From 9ea342d2e63ca060bf6a7f195610815c29b99550 Mon Sep 17 00:00:00 2001 From: Noriko Hosoi Date: Jan 20 2015 21:58:42 +0000 Subject: Ticket #47995 - Admin Server: source code cleaning Description: Removing unnecessary full path. Note: it's in the DEBUG_TRACE which is not enabled. https://fedorahosted.org/389/ticket/47995 --- diff --git a/lib/libadmin/httpcon.c b/lib/libadmin/httpcon.c index 4bc5abe..24a39e1 100644 --- a/lib/libadmin/httpcon.c +++ b/lib/libadmin/httpcon.c @@ -69,7 +69,8 @@ extern void SEC_Init(void); #ifdef DEBUG_TRACE FILE *dbf = NULL; int numconns = 0; -char *dbd = "/tmp/http_trace.%d"; +/* Replace '/path/to' with a real path when DEBUG_TRACE is enabled. */ +char *dbd = "/path/to/http_trace.%d"; char dbp[256]; #endif