Skip to content

Commit

Permalink
a new line.
Browse files Browse the repository at this point in the history
  • Loading branch information
sakane committed Sep 29, 2000
1 parent 638d376 commit 6fd482f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions kame/kame/faithd/tcp.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* $KAME: tcp.c,v 1.4 2000/07/28 08:05:00 itojun Exp $ */
/* $KAME: tcp.c,v 1.5 2000/09/29 03:48:31 sakane Exp $ */

/*
* Copyright (C) 1997 and 1998 WIDE Project.
Expand Down Expand Up @@ -193,7 +193,8 @@ relay(int s_rcv, int s_snd, const char *service, int direction)
FD_ZERO(&exceptfds);
fcntl(s_snd, F_SETFD, O_NONBLOCK);
oreadfds = readfds; owritefds = writefds; oexceptfds = exceptfds;
FD_SET(s_rcv, &readfds); FD_SET(s_rcv, &exceptfds);
FD_SET(s_rcv, &readfds);
FD_SET(s_rcv, &exceptfds);
oob_exists = 0;
maxfd = (s_rcv > s_snd) ? s_rcv : s_snd;

Expand Down

0 comments on commit 6fd482f

Please sign in to comment.