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

Diff for /src/usr.bin/ssh/ssh.c between version 1.326 and 1.327

version 1.326, 2009/07/02 02:11:47 version 1.327, 2009/10/24 11:23:42
Line 91 
Line 91 
 #include "match.h"  #include "match.h"
 #include "msg.h"  #include "msg.h"
 #include "uidswap.h"  #include "uidswap.h"
   #include "roaming.h"
 #include "version.h"  #include "version.h"
   
 #ifdef SMARTCARD  #ifdef SMARTCARD
Line 1202 
Line 1203 
                 if (daemon(1, 1) < 0)                  if (daemon(1, 1) < 0)
                         fatal("daemon() failed: %.200s", strerror(errno));                          fatal("daemon() failed: %.200s", strerror(errno));
         }          }
   
           if (options.use_roaming)
                   request_roaming();
   
         return client_loop(tty_flag, tty_flag ?          return client_loop(tty_flag, tty_flag ?
             options.escape_char : SSH_ESCAPECHAR_NONE, id);              options.escape_char : SSH_ESCAPECHAR_NONE, id);

Legend:
Removed from v.1.326  
changed lines
  Added in v.1.327