summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/log.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/log.c b/src/log.c
index fd9bdd9..34e1047 100644
--- a/src/log.c
+++ b/src/log.c
@@ -248,8 +248,6 @@ void send_stored_logs (void)
*/
int setup_logging (void)
{
- int ret = -1;
-
/* Write to a user supplied log file if it's defined. This will
* override using the syslog even if syslog is defined. */
if (config.syslog) {
@@ -278,9 +276,7 @@ int setup_logging (void)
logging_initialized = TRUE;
send_stored_logs ();
- ret = 0;
-
- return ret;
+ return 0;
}
/**