[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.196 and 1.197

version 1.196, 2003/07/03 08:09:06 version 1.197, 2003/07/16 10:34:53
Line 329 
Line 329 
                         tty_flag = 1;                          tty_flag = 1;
                         break;                          break;
                 case 'v':                  case 'v':
                         if (0 == debug_flag) {                          if (debug_flag == 0) {
                                 debug_flag = 1;                                  debug_flag = 1;
                                 options.log_level = SYSLOG_LEVEL_DEBUG1;                                  options.log_level = SYSLOG_LEVEL_DEBUG1;
                         } else if (options.log_level < SYSLOG_LEVEL_DEBUG3) {                          } else {
                                 options.log_level++;                                  if (options.log_level < SYSLOG_LEVEL_DEBUG3)
                                           options.log_level++;
                                 break;                                  break;
                         } else                          }
                                 fatal("Too high debugging level.");  
                         /* fallthrough */                          /* fallthrough */
                 case 'V':                  case 'V':
                         fprintf(stderr,                          fprintf(stderr,

Legend:
Removed from v.1.196  
changed lines
  Added in v.1.197