=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ssh/sshconnect.c,v retrieving revision 1.150 retrieving revision 1.151 diff -u -r1.150 -r1.151 --- src/usr.bin/ssh/sshconnect.c 2003/11/03 09:09:41 1.150 +++ src/usr.bin/ssh/sshconnect.c 2003/11/03 09:37:32 1.151 @@ -13,7 +13,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: sshconnect.c,v 1.150 2003/11/03 09:09:41 jakob Exp $"); +RCSID("$OpenBSD: sshconnect.c,v 1.151 2003/11/03 09:37:32 jakob Exp $"); #include @@ -1033,7 +1033,7 @@ warn_changed_key(Key *host_key) { char *fp; - char *type = key_type(host_key); + const char *type = key_type(host_key); fp = key_fingerprint(host_key, SSH_FP_MD5, SSH_FP_HEX); @@ -1048,5 +1048,4 @@ error("Please contact your system administrator."); xfree(fp); - xfree(type); }