From fa603abfe2ab157756969b584a223f1ed618b965 Mon Sep 17 00:00:00 2001 From: Pablo Neira Ayuso Date: Sun, 21 Dec 2008 19:47:04 +0100 Subject: sync-mode: remove unnecessary split lines This patch removes unnecessary split lines in several log messages. Signed-off-by: Pablo Neira Ayuso --- src/sync-mode.c | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/src/sync-mode.c b/src/sync-mode.c index 6779487..ad2e2ff 100644 --- a/src/sync-mode.c +++ b/src/sync-mode.c @@ -197,8 +197,7 @@ static int init_sync(void) STATE_SYNC(sync)->internal_cache_extra); if (!STATE_SYNC(internal)) { - dlog(LOG_ERR, "can't allocate memory for " - "the internal cache"); + dlog(LOG_ERR, "can't allocate memory for the internal cache"); return -1; } @@ -212,8 +211,7 @@ static int init_sync(void) NULL); if (!STATE_SYNC(external)) { - dlog(LOG_ERR, "can't allocate memory for the " - "external cache"); + dlog(LOG_ERR, "can't allocate memory for the external cache"); return -1; } @@ -383,8 +381,7 @@ static int local_handler_sync(int fd, int type, void *data) case COMMIT: ret = fork(); if (ret == 0) { - dlog(LOG_NOTICE, - "committing external cache"); + dlog(LOG_NOTICE, "committing external cache"); cache_commit(STATE_SYNC(external)); exit(EXIT_SUCCESS); } -- cgit v1.2.3