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

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

version 1.80, 2014/04/29 18:01:49 version 1.81, 2015/01/13 19:31:40
Line 492 
Line 492 
         /* Mac structure */          /* Mac structure */
         if (cipher_authlen(enc->cipher) == 0) {          if (cipher_authlen(enc->cipher) == 0) {
                 mac->name = buffer_get_string(&b, NULL);                  mac->name = buffer_get_string(&b, NULL);
                 if (mac->name == NULL || mac_setup(mac, mac->name) == -1)                  if (mac->name == NULL || mac_setup(mac, mac->name) != 0)
                         fatal("%s: can not setup mac %s", __func__, mac->name);                          fatal("%s: can not setup mac %s", __func__, mac->name);
                 mac->enabled = buffer_get_int(&b);                  mac->enabled = buffer_get_int(&b);
                 mac->key = buffer_get_string(&b, &len);                  mac->key = buffer_get_string(&b, &len);

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