diff fuzzer-pubkey.c @ 1559:92c93b4a3646 fuzz

Fix to be able to compile normal(ish) binaries with --enable-fuzz
author Matt Johnston <matt@ucc.asn.au>
date Wed, 28 Feb 2018 22:02:12 +0800
parents a90fdd2d2ed8
children cdfab509c392
line wrap: on
line diff
--- a/fuzzer-pubkey.c	Wed Feb 28 21:40:08 2018 +0800
+++ b/fuzzer-pubkey.c	Wed Feb 28 22:02:12 2018 +0800
@@ -20,14 +20,14 @@
 
 	m_malloc_set_epoch(1);
 
-	// choose a keytype based on input
+	/* choose a keytype based on input */
 	uint8_t b = 0;
 	size_t i;
 	for (i = 0; i < Size; i++) {
 		b ^= Data[i];
 	}
 	const char* algoname = fuzz_signkey_names[b%DROPBEAR_SIGNKEY_NUM_NAMED];
-	const char* keyblob = "blob"; // keep short
+	const char* keyblob = "blob"; /* keep short */
 
 	if (setjmp(fuzz.jmp) == 0) {
 		fuzz_checkpubkey_line(fuzz.input, 5, "/home/me/authorized_keys", 
@@ -37,7 +37,7 @@
 	} else {
 		m_malloc_free_epoch(1, 1);
 		TRACE(("dropbear_exit longjmped"))
-		// dropbear_exit jumped here
+		/* dropbear_exit jumped here */
 	}
 
 	return 0;