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

Diff for /src/usr.bin/ssh/ssh-agent.c between version 1.251 and 1.252

version 1.251, 2019/12/13 19:09:10 version 1.252, 2020/01/23 07:10:22
Line 1383 
Line 1383 
         if (ac > 0)          if (ac > 0)
                 parent_alive_interval = 10;                  parent_alive_interval = 10;
         idtab_init();          idtab_init();
         signal(SIGPIPE, SIG_IGN);          ssh_signal(SIGPIPE, SIG_IGN);
         signal(SIGINT, (d_flag | D_flag) ? cleanup_handler : SIG_IGN);          ssh_signal(SIGINT, (d_flag | D_flag) ? cleanup_handler : SIG_IGN);
         signal(SIGHUP, cleanup_handler);          ssh_signal(SIGHUP, cleanup_handler);
         signal(SIGTERM, cleanup_handler);          ssh_signal(SIGTERM, cleanup_handler);
   
         if (pledge("stdio rpath cpath unix id proc exec", NULL) == -1)          if (pledge("stdio rpath cpath unix id proc exec", NULL) == -1)
                 fatal("%s: pledge: %s", __progname, strerror(errno));                  fatal("%s: pledge: %s", __progname, strerror(errno));

Legend:
Removed from v.1.251  
changed lines
  Added in v.1.252