From e08d498ff7b12acd94663bf43f8d86c15b460d5d Mon Sep 17 00:00:00 2001 From: Amos Jeffries Date: Tue, 24 Feb 2009 01:14:54 +1300 Subject: [PATCH] Fix: appname is now APP_SHORTNAME --- src/main.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.cc b/src/main.cc index 761b9f7a98..92f00ee304 100644 --- a/src/main.cc +++ b/src/main.cc @@ -1397,10 +1397,10 @@ sendSignal(void) } } else { if (opt_send_signal != SIGTERM) { - fprintf(stderr, "%s: ERROR: No running copy\n", appname); + fprintf(stderr, "%s: ERROR: No running copy\n", APP_SHORTNAME); exit(1); } else { - fprintf(stderr, "%s: No running copy\n", appname); + fprintf(stderr, "%s: No running copy\n", APP_SHORTNAME); exit(0); } } -- 2.47.2