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

Diff for /src/usr.bin/ssh/sshconnect2.c between version 1.215 and 1.216

version 1.215, 2015/01/15 11:04:36 version 1.216, 2015/01/18 13:33:34
Line 135 
Line 135 
                         ALG_APPEND(last, alg);                          ALG_APPEND(last, alg);
         }          }
 #undef ALG_APPEND  #undef ALG_APPEND
         xasprintf(&ret, "%s%s%s", first, *first == '\0' ? "" : ",", last);          xasprintf(&ret, "%s%s%s", first,
               (*first == '\0' || *last == '\0') ? "" : ",", last);
         if (*first != '\0')          if (*first != '\0')
                 debug3("%s: prefer hostkeyalgs: %s", __func__, first);                  debug3("%s: prefer hostkeyalgs: %s", __func__, first);
   

Legend:
Removed from v.1.215  
changed lines
  Added in v.1.216