From: František Dvořák Date: Tue, 28 Jun 2011 07:35:27 +0000 (+0000) Subject: Fix static declaration in gridsite-gacl.h, SB #69635. X-Git-Tag: gridsite-core_R_1_7_14~2 X-Git-Url: http://scientific.zcu.cz/git/?a=commitdiff_plain;h=d2bb17636ce6859c1551998b32fe0759cbf8497d;p=jra1mw.git Fix static declaration in gridsite-gacl.h, SB #69635. --- diff --git a/org.gridsite.core/interface/gridsite-gacl.h b/org.gridsite.core/interface/gridsite-gacl.h index c02d8bc..319209f 100644 --- a/org.gridsite.core/interface/gridsite-gacl.h +++ b/org.gridsite.core/interface/gridsite-gacl.h @@ -187,8 +187,7 @@ extern GACLperm gacl_perm_vals[]; #define GACLmildUrlEncode(x) GRSThttpUrlMildencode((x)) /* char *GACLmildUrlEncode(char *); */ -GACLentry *GRSTgaclEntryParse(xmlNodePtr cur); -/* special function for legacy EDG LB service */ +GRSTgaclEntry *GACLparseEntry(void *cur); #ifdef __cplusplus } // extern "C" diff --git a/org.gridsite.core/src/grst_gacl.c b/org.gridsite.core/src/grst_gacl.c index 50f26d7..ad7b475 100644 --- a/org.gridsite.core/src/grst_gacl.c +++ b/org.gridsite.core/src/grst_gacl.c @@ -1388,7 +1388,7 @@ GRSTgaclPerm GRSTgaclAclTestexclUser(GRSTgaclAcl *acl, GRSTgaclUser *user) Wrapper functions for gridsite-gacl.h support of legacy API */ -GRSTgaclEntry *GACLparseEntry(xmlNodePtr cur) +GRSTgaclEntry *GACLparseEntry(void *cur) { return GRSTgaclEntryParse(cur); }