propagate errors from opening dump files
authorAleš Křenek <ljocha@ics.muni.cz>
Fri, 20 May 2005 12:57:45 +0000 (12:57 +0000)
committerAleš Křenek <ljocha@ics.muni.cz>
Fri, 20 May 2005 12:57:45 +0000 (12:57 +0000)
org.glite.lb.server/Makefile
org.glite.lb.server/project/version.properties
org.glite.lb.server/src/srv_purge.c

index 0bfca0f..e88708a 100644 (file)
@@ -21,6 +21,8 @@ gsoap_prefix=/opt/gsoap
 -include Makefile.inc
 -include ../Makefile.inc
 
+default all: compile
+
 GLITE_LB_SERVER_WITH_WS=yes
 
 ifeq ($(GLITE_LB_SERVER_WITH_WS),yes)
@@ -143,8 +145,6 @@ glite_lb_bkserverd: ${SERVER_OBJS} ${SERVER_SOAP_OBJS}
 glite_lb_bkindex: ${INDEX_OBJS}
        ${LINK} -o $@ ${INDEX_OBJS} ${COMMON_LIB} ${EXT_LIBS}
 
-default all: compile
-
 compile: glite_lb_bkserverd glite_lb_bkindex glite_lb_proxy
 
 check: compile test.xml test.query
index 54d6b19..e27af18 100644 (file)
@@ -1,4 +1,4 @@
 
-module.version = 1.0.2
+module.version = 1.0.3
 module.age = 1
                                
index 58a843d..a19e8f5 100644 (file)
@@ -65,7 +65,8 @@ int edg_wll_CreateTmpFileStorage(edg_wll_Context ctx, char *prefix, char **fname
                                char buff[100];
 
                                sprintf(buff, "couldn't create temporary server file");
-                               return edg_wll_SetError(ctx, errno, buff);
+                               edg_wll_SetError(ctx, errno, buff);
+                               return -1;
                        }
                }
                else