Changeset 982 for trunk/zoo-project/zoo-kernel
- Timestamp:
- Feb 24, 2021, 6:20:56 PM (4 years ago)
- Location:
- trunk/zoo-project/zoo-kernel
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/zoo-project/zoo-kernel/Makefile.in
r980 r982 4 4 5 5 version.h: Makefile 6 echo "#define ZOO_VERSION \"1.8. 0`svnversion`\"" > version.h6 echo "#define ZOO_VERSION \"1.8.1-dev `svnversion`\"" > version.h 7 7 echo "@ETC_DEF@" >> version.h 8 8 echo "#define LOCALEDIR \"@localedir@\"" >> version.h -
trunk/zoo-project/zoo-kernel/configure.ac
r980 r982 1 AC_INIT([ZOO Kernel], [1.8. 0], [bugs@zoo-project.org])1 AC_INIT([ZOO Kernel], [1.8.1-dev], [bugs@zoo-project.org]) 2 2 3 3 AC_CONFIG_MACRO_DIR([macros]) -
trunk/zoo-project/zoo-kernel/server_internal.c
r967 r982 375 375 zStatStruct f_status; 376 376 int s=zStat(filename, &f_status); 377 sprintf(rsize,"%l ld",f_status.st_size);377 sprintf(rsize,"%ld",f_status.st_size); 378 378 if(getMap(content,"storage")==NULL){ 379 379 map* tmpMap1=getMap(content,"value"); -
trunk/zoo-project/zoo-kernel/zoo_service_loader.c
r974 r982 3418 3418 signal (SIGABRT, donothing); 3419 3419 #endif 3420 fprintf(stderr,"%s %d \n",__FILE__,__LINE__);3421 fflush(stderr);3422 3420 3423 3421 if (((int) zGetpid ()) != cpid || cgiSid != NULL) 3424 3422 { 3425 fprintf(stderr,"%s %d \n",__FILE__,__LINE__);3426 fflush(stderr);3427 3423 if (eres == SERVICE_SUCCEEDED) 3428 3424 #ifdef USE_CALLBACK
Note: See TracChangeset
for help on using the changeset viewer.