diff options
author | Pablo Neira Ayuso <pablo@netfilter.org> | 2008-12-21 19:47:04 +0100 |
---|---|---|
committer | Pablo Neira Ayuso <pablo@netfilter.org> | 2008-12-21 19:47:04 +0100 |
commit | fa603abfe2ab157756969b584a223f1ed618b965 (patch) | |
tree | dd0abd910e18bed30a5607aa2e22c2878184afb4 /src/sync-mode.c | |
parent | 3641d2351ab42bef56e341ccca007331410822f2 (diff) | |
download | conntrack-tools-fa603abfe2ab157756969b584a223f1ed618b965.tar.gz conntrack-tools-fa603abfe2ab157756969b584a223f1ed618b965.zip |
sync-mode: remove unnecessary split lines
This patch removes unnecessary split lines in several log messages.
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'src/sync-mode.c')
-rw-r--r-- | src/sync-mode.c | 9 |
1 files 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); } |