summaryrefslogtreecommitdiff
path: root/sshconnect2.c
diff options
context:
space:
mode:
Diffstat (limited to 'sshconnect2.c')
-rw-r--r--sshconnect2.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sshconnect2.c b/sshconnect2.c
index 5f4943ba8..4ce8d4d85 100644
--- a/sshconnect2.c
+++ b/sshconnect2.c
@@ -23,7 +23,7 @@
23 */ 23 */
24 24
25#include "includes.h" 25#include "includes.h"
26RCSID("$OpenBSD: sshconnect2.c,v 1.77 2001/06/24 05:35:34 markus Exp $"); 26RCSID("$OpenBSD: sshconnect2.c,v 1.78 2001/06/24 05:47:13 markus Exp $");
27 27
28#include <openssl/bn.h> 28#include <openssl/bn.h>
29#include <openssl/md5.h> 29#include <openssl/md5.h>
@@ -769,9 +769,9 @@ input_userauth_info_req(int type, int plen, void *ctxt)
769 inst = packet_get_string(NULL); 769 inst = packet_get_string(NULL);
770 lang = packet_get_string(NULL); 770 lang = packet_get_string(NULL);
771 if (strlen(name) > 0) 771 if (strlen(name) > 0)
772 log(name); 772 log("%s", name);
773 if (strlen(inst) > 0) 773 if (strlen(inst) > 0)
774 log(inst); 774 log("%s", inst);
775 xfree(name); 775 xfree(name);
776 xfree(inst); 776 xfree(inst);
777 xfree(lang); 777 xfree(lang);