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

Diff for /src/usr.bin/ftp/cmds.c between version 1.71 and 1.72

version 1.71, 2012/10/15 21:20:05 version 1.72, 2014/08/16 07:49:27
Line 79 
Line 79 
 #include <stdlib.h>  #include <stdlib.h>
 #include <string.h>  #include <string.h>
 #include <unistd.h>  #include <unistd.h>
   #include <errno.h>
   
 #include "ftp_var.h"  #include "ftp_var.h"
 #include "pathnames.h"  #include "pathnames.h"
Line 1326 
Line 1327 
 void  void
 proxabort(int signo)  proxabort(int signo)
 {  {
           int save_errno = errno;
   
         alarmtimer(0);          alarmtimer(0);
         if (!proxy) {          if (!proxy) {
Line 1338 
Line 1340 
                 proxflag = 0;                  proxflag = 0;
         }          }
         pswitch(0);          pswitch(0);
           errno = save_errno;
         longjmp(abortprox, 1);          longjmp(abortprox, 1);
 }  }
   

Legend:
Removed from v.1.71  
changed lines
  Added in v.1.72