changeset 102:6571b480fa04

merge of 5c31199418631253a3d311fe3b1ff87351e1c9ca and c84edf4a78416c5c3172871d3c74d7fd64afab2d
author Matt Johnston <matt@ucc.asn.au>
date Tue, 24 Aug 2004 04:07:41 +0000
parents 72dc22f56858 (current diff) 2ca590852f45 (diff)
children 8aeac62a968f
files authpasswd.h authpubkey.h debian/compat debian/conffiles debian/dirs debian/docs debian/postinst debian/postrm gendss.c tcpfwd-direct.c tcpfwd-direct.h tcpfwd-remote.c tcpfwd-remote.h
diffstat 1 files changed, 2 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/gendss.c	Mon Aug 23 05:27:34 2004 +0000
+++ b/gendss.c	Tue Aug 24 04:07:41 2004 +0000
@@ -33,6 +33,8 @@
 
 #define QSIZE 20 /* 160 bit */
 
+/* This is just a test */
+
 #ifdef DROPBEAR_DSS
 
 static void getq(dss_key *key);
@@ -150,7 +152,6 @@
 
 static void getg(dss_key * key) {
 
-	char printbuf[1000];
 	DEF_MP_INT(div);
 	DEF_MP_INT(h);
 	DEF_MP_INT(val);
@@ -183,8 +184,6 @@
 	
 	} while (mp_cmp_d(key->g, 1) != MP_GT);
 
-	mp_toradix(key->g, printbuf, 10);
-
 	mp_clear_multi(&div, &h, &val, NULL);
 }