Skip to content

Commit

Permalink
erts: Small fix in inet_drv.c:sctp_set_opts
Browse files Browse the repository at this point in the history
  • Loading branch information
sverker committed Dec 6, 2011
1 parent a02e9fc commit 14ec996
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion erts/emulator/drivers/common/inet_drv.c
Expand Up @@ -6189,7 +6189,7 @@ static int sctp_set_opts(inet_descriptor* desc, char* ptr, int len)
proto = IPPROTO_SCTP;
type = SCTP_DELAYED_ACK_TIME;
arg_ptr = (char*) (&arg.av);
arg_sz = sizeof ( arg.es);
arg_sz = sizeof ( arg.av);
break;
}
# endif
Expand Down

0 comments on commit 14ec996

Please sign in to comment.