You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by rh...@apache.org on 2011/04/07 16:42:05 UTC

svn commit: r1089898 - /subversion/trunk/subversion/libsvn_subr/debug.c

Author: rhuijben
Date: Thu Apr  7 14:42:05 2011
New Revision: 1089898

URL: http://svn.apache.org/viewvc?rev=1089898&view=rev
Log:
* subversion/libsvn_subr/debug.c
  (svn_dbg__preamble): Revert r108989; this doesn't fix my problem with the
    traces and we already looked for '\'

Modified:
    subversion/trunk/subversion/libsvn_subr/debug.c

Modified: subversion/trunk/subversion/libsvn_subr/debug.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_subr/debug.c?rev=1089898&r1=1089897&r2=1089898&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_subr/debug.c (original)
+++ subversion/trunk/subversion/libsvn_subr/debug.c Thu Apr  7 14:42:05 2011
@@ -50,11 +50,7 @@ svn_dbg__preamble(const char *file, long
   if (output != NULL && !quiet_mode())
     {
       /* Quick and dirty basename() code.  */
-#if defined(WIN32) || defined(__OS2__)
-      const char *slash = strrchr(file, '\\');
-#else
       const char *slash = strrchr(file, '/');
-#endif
 
       if (slash == NULL)
         slash = strrchr(file, '\\');