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

Diff for /src/usr.bin/ssh/ssh-add.c between version 1.72 and 1.72.2.1

version 1.72, 2005/07/17 07:17:55 version 1.72.2.1, 2006/02/03 03:01:57
Line 312 
Line 312 
         char *sc_reader_id = NULL;          char *sc_reader_id = NULL;
         int i, ch, deleting = 0, ret = 0;          int i, ch, deleting = 0, ret = 0;
   
           /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
           sanitise_stdfd();
   
         SSLeay_add_all_algorithms();          SSLeay_add_all_algorithms();
   
         /* At first, get a connection to the authentication agent. */          /* At first, get a connection to the authentication agent. */
         ac = ssh_get_authentication_connection();          ac = ssh_get_authentication_connection();
         if (ac == NULL) {          if (ac == NULL) {
                 fprintf(stderr, "Could not open a connection to your authentication agent.\n");                  fprintf(stderr,
                       "Could not open a connection to your authentication agent.\n");
                 exit(2);                  exit(2);
         }          }
         while ((ch = getopt(argc, argv, "lLcdDxXe:s:t:")) != -1) {          while ((ch = getopt(argc, argv, "lLcdDxXe:s:t:")) != -1) {

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