messaging3: Fix 80-char line limit
authorVolker Lendecke <vl@samba.org>
Fri, 2 May 2014 09:12:52 +0000 (09:12 +0000)
committerVolker Lendecke <vl@samba.org>
Thu, 8 May 2014 07:10:12 +0000 (09:10 +0200)
Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
source3/lib/messages.c

index ca254a4cfea9362ef131302c94e975e2e4fda72d..065782ac1b49095b64e9c547cc6e3eebee632d16 100644 (file)
@@ -709,7 +709,7 @@ void messaging_dispatch_rec(struct messaging_context *msg_ctx,
                                memmove(&msg_ctx->waiters[i],
                                        &msg_ctx->waiters[i+1],
                                        sizeof(struct tevent_req *) *
-                                               (msg_ctx->num_waiters - i - 1));
+                                           (msg_ctx->num_waiters - i - 1));
                        }
                        msg_ctx->num_waiters -= 1;
                        continue;
@@ -735,7 +735,8 @@ bool messaging_parent_dgm_cleanup_init(struct messaging_context *msg)
 
        req = background_job_send(
                msg, msg->event_ctx, msg, NULL, 0,
-               lp_parm_int(-1, "messaging", "messaging dgm cleanup interval", 60*15),
+               lp_parm_int(-1, "messaging", "messaging dgm cleanup interval",
+                           60*15),
                mess_parent_dgm_cleanup, msg);
        if (req == NULL) {
                return false;
@@ -752,7 +753,8 @@ static int mess_parent_dgm_cleanup(void *private_data)
 
        status = messaging_dgm_wipe(msg_ctx);
        DEBUG(10, ("messaging_dgm_wipe returned %s\n", nt_errstr(status)));
-       return lp_parm_int(-1, "messaging", "messaging dgm cleanup interval", 60*15);
+       return lp_parm_int(-1, "messaging", "messaging dgm cleanup interval",
+                          60*15);
 }
 
 static void mess_parent_dgm_cleanup_done(struct tevent_req *req)
@@ -763,11 +765,13 @@ static void mess_parent_dgm_cleanup_done(struct tevent_req *req)
 
        status = background_job_recv(req);
        TALLOC_FREE(req);
-       DEBUG(1, ("messaging dgm cleanup job ended with %s\n", nt_errstr(status)));
+       DEBUG(1, ("messaging dgm cleanup job ended with %s\n",
+                 nt_errstr(status)));
 
        req = background_job_send(
                msg, msg->event_ctx, msg, NULL, 0,
-               lp_parm_int(-1, "messaging", "messaging dgm cleanup interval", 60*15),
+               lp_parm_int(-1, "messaging", "messaging dgm cleanup interval",
+                           60*15),
                mess_parent_dgm_cleanup, msg);
        if (req == NULL) {
                DEBUG(1, ("background_job_send failed\n"));