Changeset 255 for trunk/zoo-services
- Timestamp:
- Jul 14, 2011, 2:46:27 PM (13 years ago)
- Location:
- trunk/zoo-services/utils/status
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/zoo-services/utils/status/Makefile
r51 r255 1 CFLAGS=-I../../../ zoo-kernel/ -I./ `xslt-config --cflags` `xml2-config --cflags`-DLINUX_FREE_ISSUE #-DDEBUG1 CFLAGS=-I../../../thirds/cgic206/ -I../../../zoo-kernel/ -I./ `xslt-config --cflags` `xml2-config --cflags` -lintl -lfcgi -lcrypto -DLINUX_FREE_ISSUE #-DDEBUG 2 2 # if JS_ENABLED flag is set to true in your ZOO-Kernel Makefile then you'll have 3 3 # uncomment the following line -
trunk/zoo-services/utils/status/service.c
r216 r255 72 72 char tmp[128]; 73 73 sprintf(tmp,"_%s.xml",tmpMap->value); 74 while ((dp = readdir(dirp)) != NULL) 74 while ((dp = readdir(dirp)) != NULL){ 75 #ifdef DEBUG 76 fprintf(stderr,"File : %s searched : %s\n",dp->d_name,tmp); 77 #endif 75 78 if(strstr(dp->d_name,tmp)!=0){ 76 79 sprintf(fileName,"%s/%s",tmpTmap->value,dp->d_name); 77 80 hasFile=1; 78 81 } 82 } 79 83 }else{ 80 84 char tmp[1024];
Note: See TracChangeset
for help on using the changeset viewer.