You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by se...@apache.org on 2008/02/25 13:02:41 UTC

svn commit: r630821 - /webservices/axis2/trunk/c/util/src/dir_handler.c

Author: senaka
Date: Mon Feb 25 04:02:29 2008
New Revision: 630821

URL: http://svn.apache.org/viewvc?rev=630821&view=rev
Log:
Fixing bug in axutil_dir_handler_list_services_or_modules_in_dir().

Modified:
    webservices/axis2/trunk/c/util/src/dir_handler.c

Modified: webservices/axis2/trunk/c/util/src/dir_handler.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/util/src/dir_handler.c?rev=630821&r1=630820&r2=630821&view=diff
==============================================================================
--- webservices/axis2/trunk/c/util/src/dir_handler.c (original)
+++ webservices/axis2/trunk/c/util/src/dir_handler.c Mon Feb 25 04:02:29 2008
@@ -332,19 +332,19 @@
       * If this code block is not required, we might as well remove
       * it.
       */
-    /*axis2_char_t *ptr;
+    axis2_char_t *ptr;
 
     if ((strcmp(entry->d_name, ".") == 0) || (strcmp(entry->d_name, "..") == 0))
-        return (AXIS2_FALSE);*/
+        return (AXIS2_FALSE);
 
     /* Check for filename extensions */
-    /*ptr = axutil_rindex(entry->d_name, '.');
+    ptr = axutil_rindex(entry->d_name, '.');
     if ((ptr) && ((strcmp(ptr, AXIS2_LIB_SUFFIX) == 0)))
     {
         return (AXIS2_TRUE);
     }
     else
-        return (AXIS2_FALSE);*/
+        return (AXIS2_FALSE);
     return 0;
 }
 



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-cvs-help@ws.apache.org