1
0
mirror of https://github.com/nmap/nmap.git synced 2026-01-09 07:59:03 +00:00

Fix a typo in an error message, also provide more information.

This commit is contained in:
david
2010-04-19 18:01:37 +00:00
parent cb0f4a6134
commit e9fc299fea

View File

@@ -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 */