diff options
author | 2000-05-04 22:37:59 +0000 | |
---|---|---|
committer | 2000-05-04 22:37:59 +0000 | |
commit | f489bed7a2d3631ccc67a14b7651fdbca4053a45 (patch) | |
tree | 7d6de087e89674c165e3505a5cb4e3cbdb26dce9 /usr.bin/ssh/dsa.c | |
parent | clear padding in ssh2 (diff) | |
download | wireguard-openbsd-f489bed7a2d3631ccc67a14b7651fdbca4053a45.tar.xz wireguard-openbsd-f489bed7a2d3631ccc67a14b7651fdbca4053a45.zip |
replace broken uuencode w/ libc b64_ntop
Diffstat (limited to 'usr.bin/ssh/dsa.c')
-rw-r--r-- | usr.bin/ssh/dsa.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/dsa.c b/usr.bin/ssh/dsa.c index a4f6d3e7857..58059080939 100644 --- a/usr.bin/ssh/dsa.c +++ b/usr.bin/ssh/dsa.c @@ -28,7 +28,7 @@ */ #include "includes.h" -RCSID("$Id: dsa.c,v 1.5 2000/04/26 20:56:29 markus Exp $"); +RCSID("$Id: dsa.c,v 1.6 2000/05/04 22:37:59 markus Exp $"); #include "ssh.h" #include "xmalloc.h" @@ -63,7 +63,7 @@ dsa_key_from_blob( Key *key; #ifdef DEBUG_DSS - dump_base64(blob, blen); + dump_base64(stderr, blob, blen); #endif /* fetch & parse DSA/DSS pubkey */ key = key_new(KEY_DSA); |