From 1b6bea0545fcf50eb5228d591d3dd620d78b169d Mon Sep 17 00:00:00 2001 From: twouters Date: Tue, 29 May 2001 13:16:22 +0000 Subject: In the definition of LOG_IDENT and SCRIPTDIR, don't try to glue string literals together with ##. That's not what ## is for; ## is to glue together stringified versions of tokens. The fact that it worked was a bug in GCC. Thanx to Jeff Dairiki for reminding me to take care of this. This fixes SF bug #227694. --- src/cgi-wrapper.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/cgi-wrapper.c') diff --git a/src/cgi-wrapper.c b/src/cgi-wrapper.c index 5e0d4be5a..ce7335271 100644 --- a/src/cgi-wrapper.c +++ b/src/cgi-wrapper.c @@ -23,7 +23,7 @@ /* passed in by configure */ #define SCRIPTNAME SCRIPT -#define LOG_IDENT "Mailman cgi-wrapper (" ## SCRIPT ## ")" +#define LOG_IDENT "Mailman cgi-wrapper (" SCRIPT ")" /* GID that CGI scripts run as. See your Web server's documentation. */ #define LEGAL_PARENT_GID CGI_GID -- cgit v1.2.3-70-g09d2