Skip to content

Commit be5d95d

Browse files
committedOct 9, 2024
Fix UM_setsockopt
1 parent f7b3986 commit be5d95d

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed
 

‎ext/um/um_class.c

+2-3
Original file line numberDiff line numberDiff line change
@@ -226,9 +226,8 @@ VALUE UM_setsockopt(VALUE self, VALUE fd, VALUE level, VALUE opt, VALUE value) {
226226
struct um *machine = get_machine(self);
227227
return um_setsockopt(machine, NUM2INT(fd), NUM2INT(level), NUM2INT(opt), numeric_value(value));
228228
#else
229-
int value = numeric_value(opt);
230-
int res = setsockopt(NUM2INT(fd), NUM2INT(level), NUM2INT(opt), &value, sizeof(value));
231-
printf("getsockopt value %d nvalue %d\n", value, nvalue);
229+
int value_i = numeric_value(opt);
230+
int res = setsockopt(NUM2INT(fd), NUM2INT(level), NUM2INT(opt), &value_i, sizeof(value_i));
232231
if (res)
233232
rb_syserr_fail(errno, strerror(errno));
234233
return INT2NUM(0);

0 commit comments

Comments
 (0)