VERSION.sh | 2 +- lib/libadmin/httpcon.c | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-)
New commits: commit 963909573337291e400ce25964bf42fdf9134713 Author: Noriko Hosoi nhosoi@redhat.com Date: Tue Jan 20 13:36:36 2015 -0800
bump version to 1.1.37
diff --git a/VERSION.sh b/VERSION.sh index 2942ec3..366bcab 100644 --- a/VERSION.sh +++ b/VERSION.sh @@ -11,7 +11,7 @@ vendorurl=http://port389.org # PACKAGE_VERSION is constructed from these VERSION_MAJOR=1 VERSION_MINOR=1 -VERSION_MAINT=36 +VERSION_MAINT=37 # if this is a PRERELEASE, set VERSION_PREREL # otherwise, comment it out # be sure to include the dot prefix in the prerel
commit 9ea342d2e63ca060bf6a7f195610815c29b99550 Author: Noriko Hosoi nhosoi@redhat.com Date: Tue Jan 20 13:56:31 2015 -0800
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
389-commits@lists.fedoraproject.org