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

Diff for /src/usr.bin/ssh/clientloop.c between version 1.241 and 1.242

version 1.241, 2012/08/17 00:45:45 version 1.242, 2012/09/06 04:37:38
Line 1090 
Line 1090 
                                 }                                  }
                                 continue;                                  continue;
   
                           case 'V':
                                   /* FALLTHROUGH */
                           case 'v':
                                   if (c && c->ctl_chan != -1)
                                           goto noescape;
                                   if (!log_is_on_stderr()) {
                                           snprintf(string, sizeof string,
                                               "%c%c [Logging to syslog]\r\n",
                                                escape_char, ch);
                                           buffer_append(berr, string,
                                               strlen(string));
                                           continue;
                                   }
                                   if (ch == 'V' && options.log_level >
                                       SYSLOG_LEVEL_QUIET)
                                           log_change_level(--options.log_level);
                                   if (ch == 'v' && options.log_level <
                                       SYSLOG_LEVEL_DEBUG3)
                                           log_change_level(++options.log_level);
                                   snprintf(string, sizeof string,
                                       "%c%c [LogLevel %s]\r\n", escape_char, ch,
                                       log_level_name(options.log_level));
                                   buffer_append(berr, string, strlen(string));
                                   continue;
   
                         case '&':                          case '&':
                                 if (c && c->ctl_chan != -1)                                  if (c && c->ctl_chan != -1)
                                         goto noescape;                                          goto noescape;
Line 1166 
Line 1191 
   %cB  - send a BREAK to the remote system\r\n\    %cB  - send a BREAK to the remote system\r\n\
   %cC  - open a command line\r\n\    %cC  - open a command line\r\n\
   %cR  - Request rekey (SSH protocol 2 only)\r\n\    %cR  - Request rekey (SSH protocol 2 only)\r\n\
     %cV  - Increase verbosity (LogLevel)\r\n\
     %cv  - Decrease verbosity (LogLevel)\r\n\
   %c^Z - suspend ssh\r\n\    %c^Z - suspend ssh\r\n\
   %c#  - list forwarded connections\r\n\    %c#  - list forwarded connections\r\n\
   %c&  - background ssh (when waiting for connections to terminate)\r\n\    %c&  - background ssh (when waiting for connections to terminate)\r\n\
   %c?  - this message\r\n\    %c?  - this message\r\n\
   %c%c  - send the escape character by typing it twice\r\n\    %c%c  - send the escape character by typing it twice\r\n\
 (Note that escapes are only recognized immediately after newline.)\r\n",  (Note that escapes are only recognized immediately after newline.)\r\n",
                                               escape_char, escape_char,
                                             escape_char, escape_char,                                              escape_char, escape_char,
                                             escape_char, escape_char,                                              escape_char, escape_char,
                                             escape_char, escape_char,                                              escape_char, escape_char,

Legend:
Removed from v.1.241  
changed lines
  Added in v.1.242