From 41c1e1f1db420888c7a6bcec86e0b0ec5336eb61 Mon Sep 17 00:00:00 2001 From: Tom Samstag Date: Fri, 1 Jul 2011 17:38:33 -0700 Subject: [PATCH] Fixing XML output Fixing the empty client-cipher tags in the XML output to be properly closed. --- sslscan.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sslscan.c b/sslscan.c index 6ae6ec3..f182e47 100644 --- a/sslscan.c +++ b/sslscan.c @@ -1724,7 +1724,7 @@ int testHost(struct sslCheckOptions *options) printf(" %s\n",sslCipherPointer->name); if (options->xmlOutput != 0) - fprintf(options->xmlOutput, " \n", sslCipherPointer->name); + fprintf(options->xmlOutput, " \n", sslCipherPointer->name); sslCipherPointer = sslCipherPointer->next; }