diff options
| -rw-r--r-- | source4/smbd/server.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/source4/smbd/server.c b/source4/smbd/server.c index 1cb829f437..b877e29b98 100644 --- a/source4/smbd/server.c +++ b/source4/smbd/server.c @@ -179,8 +179,8 @@ _NORETURN_ static void max_runtime_handler(struct tevent_context *ev,  					   struct timeval t, void *private_data)  {  	const char *binary_name = (const char *)private_data; -	DEBUG(0,("%s: maximum runtime exceeded - terminating, current ts: %llu\n", -	      binary_name, (unsigned long long) time(NULL))); +	DEBUG(0,("%s: maximum runtime exceeded - terminating at %llu, current ts: %llu\n", +		 binary_name, (unsigned long long)t.tv_sec, (unsigned long long) time(NULL)));  	exit(0);  } | 
