mirror of
https://github.com/PowerShell/openssh-portable.git
synced 2025-07-27 15:54:22 +02:00
- markus@cvs.openbsd.org 2001/06/24 05:47:13
[sshconnect2.c] oops, missing format string
This commit is contained in:
parent
949974bbdb
commit
126c56ad9e
@ -99,6 +99,9 @@
|
|||||||
[readpass.c readpass.h ssh-add.c sshconnect2.c ssh-keygen.c]
|
[readpass.c readpass.h ssh-add.c sshconnect2.c ssh-keygen.c]
|
||||||
switch to readpassphrase(3)
|
switch to readpassphrase(3)
|
||||||
2.7/8-stable needs readpassphrase.[ch] from libc
|
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
|
20010622
|
||||||
- (stevesk) handle systems without pw_expire and pw_change.
|
- (stevesk) handle systems without pw_expire and pw_change.
|
||||||
@ -5783,4 +5786,4 @@
|
|||||||
- Wrote replacements for strlcpy and mkdtemp
|
- Wrote replacements for strlcpy and mkdtemp
|
||||||
- Released 1.0pre1
|
- 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 $
|
||||||
|
@ -23,7 +23,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include "includes.h"
|
#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/bn.h>
|
||||||
#include <openssl/md5.h>
|
#include <openssl/md5.h>
|
||||||
@ -769,9 +769,9 @@ input_userauth_info_req(int type, int plen, void *ctxt)
|
|||||||
inst = packet_get_string(NULL);
|
inst = packet_get_string(NULL);
|
||||||
lang = packet_get_string(NULL);
|
lang = packet_get_string(NULL);
|
||||||
if (strlen(name) > 0)
|
if (strlen(name) > 0)
|
||||||
log(name);
|
log("%s", name);
|
||||||
if (strlen(inst) > 0)
|
if (strlen(inst) > 0)
|
||||||
log(inst);
|
log("%s", inst);
|
||||||
xfree(name);
|
xfree(name);
|
||||||
xfree(inst);
|
xfree(inst);
|
||||||
xfree(lang);
|
xfree(lang);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user