summaryrefslogtreecommitdiff
path: root/source4/smbd
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2012-02-20 08:08:19 +1100
committerAndrew Bartlett <abartlet@samba.org>2012-02-20 10:50:48 +1100
commitcdfc49cc6a96d08a81a780c85b8f7bbaeb7f352d (patch)
tree19dd5b3a4660d16e86b1af29b13ab451365f7bfe /source4/smbd
parent11f88524e30e671fb15df6e46e063d07197eb06b (diff)
downloadsamba-cdfc49cc6a96d08a81a780c85b8f7bbaeb7f352d.tar.gz
samba-cdfc49cc6a96d08a81a780c85b8f7bbaeb7f352d.tar.bz2
samba-cdfc49cc6a96d08a81a780c85b8f7bbaeb7f352d.zip
s4-smbd: Show time event was expected to run, as well as the current wall clock time
Diffstat (limited to 'source4/smbd')
-rw-r--r--source4/smbd/server.c4
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);
}