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

Diff for /src/usr.bin/ssh/hostfile.c between version 1.83 and 1.84

version 1.83, 2020/10/04 09:45:01 version 1.84, 2020/10/07 02:25:43
Line 449 
Line 449 
         else          else
                 error("%s: sshkey_write failed: %s", __func__, ssh_err(r));                  error("%s: sshkey_write failed: %s", __func__, ssh_err(r));
         fputc('\n', f);          fputc('\n', f);
           /* If hashing is enabled, the IP address needs to go on its own line */
           if (success && store_hash && ip != NULL)
                   success = write_host_entry(f, ip, NULL, key, 1);
         return success;          return success;
 }  }
   

Legend:
Removed from v.1.83  
changed lines
  Added in v.1.84