Style fix
This commit is contained in:
parent
76bf44370e
commit
b75f464186
1 changed files with 8 additions and 7 deletions
|
@ -3066,13 +3066,14 @@ void connect_network_socket (Lisp_Object proc, Lisp_Object ip_addresses)
|
|||
{
|
||||
Lisp_Object params = contact, key, val;
|
||||
|
||||
while (!NILP (params)) {
|
||||
key = XCAR (params);
|
||||
params = XCDR (params);
|
||||
val = XCAR (params);
|
||||
params = XCDR (params);
|
||||
optbits |= set_socket_option (s, key, val);
|
||||
}
|
||||
while (!NILP (params))
|
||||
{
|
||||
key = XCAR (params);
|
||||
params = XCDR (params);
|
||||
val = XCAR (params);
|
||||
params = XCDR (params);
|
||||
optbits |= set_socket_option (s, key, val);
|
||||
}
|
||||
}
|
||||
|
||||
if (p->is_server)
|
||||
|
|
Loading…
Add table
Reference in a new issue