[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.74 and 1.75

version 1.74, 2008/06/12 05:42:46 version 1.75, 2008/06/12 06:32:59
Line 332 
Line 332 
          * Chars to be used after each other every time the worm           * Chars to be used after each other every time the worm
          * intersects with itself.  Matter of taste.           * intersects with itself.  Matter of taste.
          */           */
         char    *augmentation_string = " .o+=*BOX@%&#/^S";          char    *augmentation_string = " .o+=*BOX@%&#/^SE";
         char    *retval, *p;          char    *retval, *p;
         u_char   field[FLDSIZE_X][FLDSIZE_Y];          u_char   field[FLDSIZE_X][FLDSIZE_Y];
         u_int    i, b;          u_int    i, b;
Line 367 
Line 367 
                         input = input >> 2;                          input = input >> 2;
                 }                  }
         }          }
         field[FLDSIZE_X / 2][FLDSIZE_Y / 2] = len;  
           /* mark starting point and end point*/
           field[FLDSIZE_X / 2][FLDSIZE_Y / 2] = len - 1;
           field[x][y] = len;
   
         /* fill in retval */          /* fill in retval */
         snprintf(retval, 10, "+--[%4s]", key_type(k));          snprintf(retval, 10, "+--[%4s]", key_type(k));

Legend:
Removed from v.1.74  
changed lines
  Added in v.1.75