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 pi...@apache.org on 2006/05/18 09:16:54 UTC

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

Author: pini
Date: Thu May 18 00:16:53 2006
New Revision: 407483

URL: http://svn.apache.org/viewvc?rev=407483&view=rev
Log:
commented some lines for time being.


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

Modified: webservices/axis2/trunk/c/util/dir_handler.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/util/dir_handler.c?rev=407483&r1=407482&r2=407483&view=diff
==============================================================================
--- webservices/axis2/trunk/c/util/dir_handler.c (original)
+++ webservices/axis2/trunk/c/util/dir_handler.c Thu May 18 00:16:53 2006
@@ -18,13 +18,13 @@
 #include <axis2_file.h>
 #include <platforms/axis2_platform_auto_sense.h>
 #include <axis2_string.h>
-#include <zlib.h>
+/*#include <zlib.h>
 #include <fcntl.h>
 #include <minizip/unzip.h>
 
 #define CASESENSITIVITY (0)
 #define WRITEBUFFERSIZE (8192)
-#define MAXFILENAME (256)
+#define MAXFILENAME (256)*/
 
 #ifndef S_ISDIR
 #   define S_ISDIR(m) ((m & S_IFMT) == S_IFDIR)
@@ -32,8 +32,8 @@
 
 extern int AXIS2_ALPHASORT();
 
-int dir_select(struct dirent *entry);
-int aar_select();
+/*int dir_select(struct dirent *entry);
+int aar_select();*/
 
 /**
  * List the dll files in the given service or module folder path
@@ -218,7 +218,7 @@
     file_list = axis2_array_list_create(env, 0);
 	if (!getcwd(cwd, 500)) exit(1);
 	chdir(pathname);
-    aar_select();
+/*    aar_select();*/
 	count = AXIS2_SCANDIR(pathname, &files, dir_select, AXIS2_ALPHASORT);
 	chdir(cwd);
 
@@ -405,7 +405,7 @@
 	return AXIS2_TRUE;
 }
 
-int aar_select()
+/*int aar_select()
 {
 	struct dirent **namelist;
 	int n;
@@ -708,4 +708,4 @@
 	#endif
 	return value;
 }
-
+*/