[sshconnect2.c]
     oops, missing format string
This commit is contained in:
Ben Lindstrom 2001-06-25 05:22:53 +00:00
parent 949974bbdb
commit 126c56ad9e
2 changed files with 7 additions and 4 deletions

View File

@ -99,6 +99,9 @@
[readpass.c readpass.h ssh-add.c sshconnect2.c ssh-keygen.c]
switch to readpassphrase(3)
2.7/8-stable needs readpassphrase.[ch] from libc
- markus@cvs.openbsd.org 2001/06/24 05:47:13
[sshconnect2.c]
oops, missing format string
20010622
- (stevesk) handle systems without pw_expire and pw_change.
@ -5783,4 +5786,4 @@
- Wrote replacements for strlcpy and mkdtemp
- Released 1.0pre1
$Id: ChangeLog,v 1.1321 2001/06/25 05:20:31 mouring Exp $
$Id: ChangeLog,v 1.1322 2001/06/25 05:22:53 mouring Exp $

View File

@ -23,7 +23,7 @@
*/
#include "includes.h"
RCSID("$OpenBSD: sshconnect2.c,v 1.77 2001/06/24 05:35:34 markus Exp $");
RCSID("$OpenBSD: sshconnect2.c,v 1.78 2001/06/24 05:47:13 markus Exp $");
#include <openssl/bn.h>
#include <openssl/md5.h>
@ -769,9 +769,9 @@ input_userauth_info_req(int type, int plen, void *ctxt)
inst = packet_get_string(NULL);
lang = packet_get_string(NULL);
if (strlen(name) > 0)
log(name);
log("%s", name);
if (strlen(inst) > 0)
log(inst);
log("%s", inst);
xfree(name);
xfree(inst);
xfree(lang);