From d2bb17636ce6859c1551998b32fe0759cbf8497d Mon Sep 17 00:00:00 2001 From: =?utf8?q?Franti=C5=A1ek=20Dvo=C5=99=C3=A1k?= Date: Tue, 28 Jun 2011 07:35:27 +0000 Subject: [PATCH] Fix static declaration in gridsite-gacl.h, SB #69635. --- org.gridsite.core/interface/gridsite-gacl.h | 3 +-- org.gridsite.core/src/grst_gacl.c | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) 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); } -- 1.8.2.3