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

Diff for /src/usr.bin/ssh/Attic/key.c between version 1.49 and 1.50

version 1.49, 2002/09/09 14:54:14 version 1.50, 2003/02/04 09:32:08
Line 410 
Line 410 
         case KEY_DSA:          case KEY_DSA:
                 space = strchr(cp, ' ');                  space = strchr(cp, ' ');
                 if (space == NULL) {                  if (space == NULL) {
                         debug3("key_read: no space");                          debug3("key_read: missing whitespace");
                         return -1;                          return -1;
                 }                  }
                 *space = '\0';                  *space = '\0';
                 type = key_type_from_name(cp);                  type = key_type_from_name(cp);
                 *space = ' ';                  *space = ' ';
                 if (type == KEY_UNSPEC) {                  if (type == KEY_UNSPEC) {
                         debug3("key_read: no key found");                          debug3("key_read: missing keytype");
                         return -1;                          return -1;
                 }                  }
                 cp = space+1;                  cp = space+1;

Legend:
Removed from v.1.49  
changed lines
  Added in v.1.50