From 563cf6f4aadfb359bdc52e18c08994cb9da4d4b0 Mon Sep 17 00:00:00 2001 From: Luke Leighton Date: Thu, 18 Sep 1997 12:47:55 +0000 Subject: added timestamp to "Denied connection" message. (This used to be commit f28b14a86c22c3bad187ca57f03e13da795d4136) --- source3/lib/access.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/lib') diff --git a/source3/lib/access.c b/source3/lib/access.c index 599cb5ca7e..c338517ed6 100644 --- a/source3/lib/access.c +++ b/source3/lib/access.c @@ -70,8 +70,8 @@ BOOL check_access(int snum) } else if (snum >= 0) - DEBUG(0,("Denied connection from %s (%s) to %s\n", - client_name(),client_addr(), + DEBUG(0,("%s Denied connection from %s (%s) to %s\n", + timestring(), client_name(),client_addr(), lp_servicename(snum))); } -- cgit