From b0d224e0da76ff5c038b0d975518aabc928e6eb8 Mon Sep 17 00:00:00 2001 From: david Date: Sun, 9 Dec 2007 04:52:42 +0000 Subject: [PATCH] Make the message printed when using an absolute path look like the other NSE debugging messages. --- nse_init.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nse_init.cc b/nse_init.cc index 7f8f4b2ac..1ffde016b 100644 --- a/nse_init.cc +++ b/nse_init.cc @@ -540,7 +540,7 @@ static bool filename_is_absolute(const char *file) { int init_fetchfile_absolute(char *path, size_t path_len, char *file) { if (filename_is_absolute(file)) { if (o.debugging > 1) - log_write(LOG_STDOUT, "Trying absolute path %s.\n", file); + log_write(LOG_STDOUT, "%s: Trying absolute path %s\n", SCRIPT_ENGINE, file); Strncpy(path, file, path_len); return nmap_fileexistsandisreadable(file); }