]> granicus.if.org Git - apache/commitdiff
fix minor annoyance on z/OS: __FILE__ is set to
authorJeff Trawick <trawick@apache.org>
Tue, 24 May 2005 22:11:24 +0000 (22:11 +0000)
committerJeff Trawick <trawick@apache.org>
Tue, 24 May 2005 22:11:24 +0000 (22:11 +0000)
"./foo.c" instead of simply "foo.c", so filter
out all but the basename before logging it with
debug messages

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@178299 13f79535-47bb-0310-9956-ffa450edef68

server/log.c

index d8f4fd98117ce3d1a6fd82f34485bc9cb9cdc426..12c8dc9d0f609a89a5bf6d0fe3056336eb840180 100644 (file)
@@ -486,7 +486,7 @@ static void log_error_core(const char *file, int line, int level,
 
 #ifndef TPF
     if (file && level_and_mask == APLOG_DEBUG) {
-#if defined(_OSD_POSIX) || defined(WIN32)
+#if defined(_OSD_POSIX) || defined(WIN32) || defined(__MVS__)
         char tmp[256];
         char *e = strrchr(file, '/');
 #ifdef WIN32