diff options
author | Heiko Schlittermann (HS12-RIPE) <hs@schlittermann.de> | 2016-06-03 17:32:55 +0200 |
---|---|---|
committer | Heiko Schlittermann (HS12-RIPE) <hs@schlittermann.de> | 2016-06-03 17:34:12 +0200 |
commit | 4d146046d9a82339d26c6be230fe1480a72b8bee (patch) | |
tree | 2c3f60031a7d8c7c33ebd60937d916bdeec37ac3 | |
parent | e498ab40197936833f696439e78c5cb08e5180cb (diff) |
Fix compiler warning/error on set_process_info(sprintf())
-rw-r--r-- | src/src/exim.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/src/exim.c b/src/src/exim.c index 08ceab7e1..01770df73 100644 --- a/src/src/exim.c +++ b/src/src/exim.c @@ -4683,8 +4683,7 @@ if (queue_interval == 0 && !daemon_listen) (stop_queue_run_id == NULL)? US"" : US" stopping at ", (stop_queue_run_id == NULL)? US"" : stop_queue_run_id); if (*queue_name) - set_process_info(CS string_sprintf( - "running the '%s' queue (single queue run)", queue_name)); + set_process_info("running the '%s' queue (single queue run)", queue_name); else set_process_info("running the queue (single queue run)"); queue_run(start_queue_run_id, stop_queue_run_id, FALSE); |