From e9fc299feaaad00c18009c48ba41dab5b8b97498 Mon Sep 17 00:00:00 2001 From: david Date: Mon, 19 Apr 2010 18:01:37 +0000 Subject: [PATCH] Fix a typo in an error message, also provide more information. --- osscan.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osscan.cc b/osscan.cc index d0e50020b..4c383f8ef 100644 --- a/osscan.cc +++ b/osscan.cc @@ -974,7 +974,7 @@ FingerPrint *parse_single_fingerprint(char *fprint_orig) { test.results = str2AVal(p); FP->tests.push_back(test); } else { - fatal("Parse error line line #%d of fingerprint", lineno); + fatal("Parse error line #%d of fingerprint: %s", lineno, thisline); } thisline = nextline; /* Time to handle the next line, if there is one */