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

Diff for /src/usr.bin/ssh/compat.c between version 1.80 and 1.81

version 1.80, 2012/08/17 01:30:00 version 1.81, 2013/05/17 00:13:13
Line 202 
Line 202 
                         break;                          break;
                 }                  }
         }          }
         xfree(s);          free(s);
         return ret;          return ret;
 }  }
   
Line 228 
Line 228 
         buffer_append(&b, "\0", 1);          buffer_append(&b, "\0", 1);
         fix_ciphers = xstrdup(buffer_ptr(&b));          fix_ciphers = xstrdup(buffer_ptr(&b));
         buffer_free(&b);          buffer_free(&b);
         xfree(orig_prop);          free(orig_prop);
         debug2("Original cipher proposal: %s", cipher_prop);          debug2("Original cipher proposal: %s", cipher_prop);
         debug2("Compat cipher proposal: %s", fix_ciphers);          debug2("Compat cipher proposal: %s", fix_ciphers);
         if (!*fix_ciphers)          if (!*fix_ciphers)

Legend:
Removed from v.1.80  
changed lines
  Added in v.1.81