1
0
mirror of https://github.com/nmap/nmap.git synced 2026-01-27 00:29:03 +00:00

Make the parameter to parse_fingerprint_file const.

This commit is contained in:
david
2008-06-13 17:32:47 +00:00
parent 44f6087b94
commit 9c646a4873
2 changed files with 2 additions and 2 deletions

View File

@@ -130,7 +130,7 @@ FingerPrint *parse_single_fingerprint(char *fprint_orig);
/* These functions take a file/db name and open+parse it, returning an
(allocated) FingerPrintDB containing the results. They exit with
an error message in the case of error. */
FingerPrintDB *parse_fingerprint_file(char *fname);
FingerPrintDB *parse_fingerprint_file(const char *fname);
FingerPrintDB *parse_fingerprint_reference_file(const char *dbname);
void free_fingerprint_file(FingerPrintDB *DB);