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

Diff for /src/usr.bin/ssh/ssh-keyscan.c between version 1.132 and 1.133

version 1.132, 2020/08/12 01:23:45 version 1.133, 2020/10/16 13:24:45
Line 617 
Line 617 
 }  }
   
 void  void
 fatal(const char *fmt,...)  sshfatal(const char *file, const char *func, int line,
       const char *fmt, ...)
 {  {
         va_list args;          va_list args;
   
         va_start(args, fmt);          va_start(args, fmt);
         do_log(SYSLOG_LEVEL_FATAL, fmt, args);          ssh_log(file, func, line, SYSLOG_LEVEL_FATAL, fmt, args);
         va_end(args);          va_end(args);
         exit(255);          cleanup_exit(255);
 }  }
   
 static void  static void

Legend:
Removed from v.1.132  
changed lines
  Added in v.1.133