From 7655258298b9861ff611db7fe029ec4b0de23d2c Mon Sep 17 00:00:00 2001 From: =?utf8?q?Zden=C4=9Bk=20Salvet?= Date: Thu, 25 Aug 2005 15:27:13 +0000 Subject: [PATCH] Move struct tags_handle declaration to correct tagsread prototype. --- org.glite.jp.primary/src/tags_plugin.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/org.glite.jp.primary/src/tags_plugin.c b/org.glite.jp.primary/src/tags_plugin.c index 2cc3d3d..953ace9 100644 --- a/org.glite.jp.primary/src/tags_plugin.c +++ b/org.glite.jp.primary/src/tags_plugin.c @@ -16,6 +16,12 @@ static int tagopen(void *,void *,const char *uri,void **); static int tagclose(void *,void *); static int tagattr(void *,void *,const char *,glite_jp_attrval_t **); +struct tags_handle { + void *bhandle; + int n; + glite_jp_attrval_t *tags; +}; + static int tagsread(void *,struct tags_handle *); #define TAGS_MAGIC 0x74c016f2 /* two middle digits encode version, i.e. 01 */ @@ -26,12 +32,6 @@ static int tagdummy() return -1; } -struct tags_handle { - void *bhandle; - int n; - glite_jp_attrval_t *tags; -}; - int init(glite_jp_context_t ctx, glite_jpps_fplug_data_t *data) { data->fpctx = ctx; -- 1.8.2.3