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

Diff for /src/usr.bin/ssh/servconf.c between version 1.390 and 1.391

version 1.390, 2023/01/17 09:44:48 version 1.391, 2023/03/03 04:34:49
Line 2856 
Line 2856 
 {  {
         u_int i;          u_int i;
   
         if (count <= 0 && code != sAuthenticationMethods)          switch (code) {
                 return;          case sAuthenticationMethods:
           case sChannelTimeout:
                   break;
           default:
                   if (count <= 0)
                           return;
                   break;
           }
   
         printf("%s", lookup_opcode_name(code));          printf("%s", lookup_opcode_name(code));
         for (i = 0; i < count; i++)          for (i = 0; i < count; i++)
                 printf(" %s",  vals[i]);                  printf(" %s",  vals[i]);

Legend:
Removed from v.1.390  
changed lines
  Added in v.1.391