diff options
author | Jeremy Allison <jra@samba.org> | 2010-02-05 22:51:11 -0800 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2010-02-05 22:51:11 -0800 |
commit | b93f07ef41fedf9cdb3f48fe77ed070c69ec3608 (patch) | |
tree | 01243e7e1d7cd87dac29be0f2d362338fa2dfefb /source3/smbd/server.c | |
parent | 913a9f4e420c7a4177e6a7874e8ec2703f447918 (diff) | |
download | samba-b93f07ef41fedf9cdb3f48fe77ed070c69ec3608.tar.gz samba-b93f07ef41fedf9cdb3f48fe77ed070c69ec3608.tar.bz2 samba-b93f07ef41fedf9cdb3f48fe77ed070c69ec3608.zip |
Fix trailing whitespace errors I added (sorry).
Jeremy.
Diffstat (limited to 'source3/smbd/server.c')
-rw-r--r-- | source3/smbd/server.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/smbd/server.c b/source3/smbd/server.c index 37716c4171..ea1ef2ef89 100644 --- a/source3/smbd/server.c +++ b/source3/smbd/server.c @@ -239,7 +239,7 @@ static void cleanup_timeout_fn(struct event_context *event_ctx, DEBUG(1,("Cleaning up brl and lock database after unclean shutdown\n")); message_send_all(smbd_messaging_context(), MSG_SMB_UNLOCK, NULL, 0, NULL); - messaging_send_buf(smbd_messaging_context(), procid_self(), + messaging_send_buf(smbd_messaging_context(), procid_self(), MSG_SMB_BRL_VALIDATE, NULL, 0); /* mark the cleanup as having been done */ (*cleanup_te) = NULL; @@ -255,14 +255,14 @@ static void remove_child_pid(pid_t pid, bool unclean_shutdown) processes to see if they can grab any of the pending locks */ - DEBUG(3,(__location__ " Unclean shutdown of pid %u\n", + DEBUG(3,(__location__ " Unclean shutdown of pid %u\n", (unsigned int)pid)); if (!cleanup_te) { /* call the cleanup timer, but not too often */ int cleanup_time = lp_parm_int(-1, "smbd", "cleanuptime", 20); cleanup_te = event_add_timed(smbd_event_context(), NULL, timeval_current_ofs(cleanup_time, 0), - cleanup_timeout_fn, + cleanup_timeout_fn, &cleanup_te); DEBUG(1,("Scheduled cleanup of brl and lock database after unclean shutdown\n")); } |