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

Diff for /src/usr.bin/ssh/readconf.c between version 1.85 and 1.86

version 1.85, 2001/07/31 09:28:44 version 1.86, 2001/08/01 22:03:33
Line 467 
Line 467 
                 goto parse_string;                  goto parse_string;
   
         case oSmartcardDevice:          case oSmartcardDevice:
                 intptr = &options->smartcard_device;                  charptr = &options->smartcard_device;
                 goto parse_int;                  goto parse_string;
   
         case oProxyCommand:          case oProxyCommand:
                 charptr = &options->proxy_command;                  charptr = &options->proxy_command;
Line 775 
Line 775 
         options->log_level = (LogLevel) - 1;          options->log_level = (LogLevel) - 1;
         options->preferred_authentications = NULL;          options->preferred_authentications = NULL;
         options->bind_address = NULL;          options->bind_address = NULL;
         options->smartcard_device = -1;          options->smartcard_device = NULL;
 }  }
   
 /*  /*

Legend:
Removed from v.1.85  
changed lines
  Added in v.1.86