summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/dsa.c
diff options
context:
space:
mode:
authorMarkus Friedl <markus@cvs.openbsd.org>2000-05-04 22:38:01 +0000
committerMarkus Friedl <markus@cvs.openbsd.org>2000-05-04 22:38:01 +0000
commit2c81c2093a3028231aa7c5f95463122bd2048918 (patch)
tree207f4245602df598c83b5fada539c7331aa6aee7 /usr.bin/ssh/dsa.c
parent60abf7cc1b62eff8e4373d8294f2392ef03b43f9 (diff)
replace broken uuencode w/ libc b64_ntop
Diffstat (limited to 'usr.bin/ssh/dsa.c')
-rw-r--r--usr.bin/ssh/dsa.c4
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);