]> jspc29.x-matter.uni-frankfurt.de Git - daqdata.git/commitdiff
rpc: basics solved
authormuench <muench>
Wed, 7 Apr 2004 10:44:07 +0000 (10:44 +0000)
committermuench <muench>
Wed, 7 Apr 2004 10:44:07 +0000 (10:44 +0000)
allParam/rpc/rpcpas.c

index 2d12bda0fba0d99ecb6560441bad3d13395fa41d..631c3f175edb6672497fd4ce2b5e35f287be556a 100644 (file)
@@ -5,12 +5,14 @@
 
 #include "rpcParam.h"
 
-unsigned long *con_1_svc(char **setup, struct svc_req *svcReq) {
+unsigned long *con_1_svc(char **arg, struct svc_req *svcReq) {
        static unsigned long res;
        Param *p;
+       char *setup;
 
        p = malloc(sizeof(Param));
-       if (conSetupParam(p, strcmp(*setup, "") == 0 ? NULL : *setup) == -1) {
+       setup = strcmp(*arg, "") == 0 ? NULL : *arg;
+       if (conSetupParam(p, setup) == -1) {
                free(p);
                p = NULL;
        }