[BACK]Return to server.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / rsync

Diff for /src/usr.bin/rsync/server.c between version 1.11 and 1.12

version 1.11, 2019/05/08 20:00:25 version 1.12, 2019/05/08 21:30:11
Line 27 
Line 27 
 #include "extern.h"  #include "extern.h"
   
 static int  static int
 fcntl_nonblock(struct sess *sess, int fd)  fcntl_nonblock(int fd)
 {  {
         int      fl;          int      fl;
   
Line 64 
Line 64 
   
         /* Begin by making descriptors non-blocking. */          /* Begin by making descriptors non-blocking. */
   
         if (!fcntl_nonblock(&sess, fdin) ||          if (!fcntl_nonblock(fdin) ||
              !fcntl_nonblock(&sess, fdout)) {               !fcntl_nonblock(fdout)) {
                 ERRX1("fcntl_nonblock");                  ERRX1("fcntl_nonblock");
                 goto out;                  goto out;
         }          }

Legend:
Removed from v.1.11  
changed lines
  Added in v.1.12