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

Diff for /src/usr.bin/ssh/log.c between version 1.23 and 1.24

version 1.23, 2002/07/06 01:00:49 version 1.24, 2002/07/19 15:43:33
Line 220 
Line 220 
             (u_long) proc, (u_long) context);              (u_long) proc, (u_long) context);
 }  }
   
   /* Remove all cleanups, to be called after fork() */
   void
   fatal_remove_all_cleanups(void)
   {
           struct fatal_cleanup *cu, *next_cu;
   
           for (cu = fatal_cleanups; cu; cu = next_cu) {
                   next_cu = cu->next;
                   xfree(cu);
           }
   }
   
 /* Cleanup and exit */  /* Cleanup and exit */
 void  void
 fatal_cleanup(void)  fatal_cleanup(void)

Legend:
Removed from v.1.23  
changed lines
  Added in v.1.24