From 75cbc5abeb4b1d39abf298be217783c2b0889ae5 Mon Sep 17 00:00:00 2001 From: hjl Date: Mon, 27 Nov 2000 23:45:03 +0000 Subject: 2000-11-27 Tobias Ringstrom * utils/mountd/auth.c (auth_authenticate): Log the bad path warning. --- utils/mountd/auth.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'utils') diff --git a/utils/mountd/auth.c b/utils/mountd/auth.c index 2b4051e..6b6b7d7 100644 --- a/utils/mountd/auth.c +++ b/utils/mountd/auth.c @@ -158,7 +158,11 @@ auth_authenticate(char *what, struct sockaddr_in *caller, char *path) struct in_addr addr = caller->sin_addr; enum auth_error error; - if (path [0] != '/') return exp; + if (path [0] != '/') { + xlog(L_WARNING, "bad path in %s request from %s: \"%s\"", + what, inet_ntoa(addr), path); + return exp; + } strncpy(epath, path, sizeof (epath) - 1); epath[sizeof (epath) - 1] = '\0'; -- cgit