From: Amos Jeffries Date: Mon, 23 Feb 2009 12:14:54 +0000 (+1300) Subject: Fix: appname is now APP_SHORTNAME X-Git-Tag: SQUID_3_2_0_1~1165 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e08d498ff7b12acd94663bf43f8d86c15b460d5d;p=thirdparty%2Fsquid.git Fix: appname is now APP_SHORTNAME --- 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); } }