From: Margaret Wasserman Date: Wed, 10 Jul 2013 16:37:14 +0000 (-0400) Subject: Fix forward reference that causes CentOS build to fail. X-Git-Tag: 1.0.1-2~18 X-Git-Url: http://www.project-moonshot.org/gitweb/?a=commitdiff_plain;h=bcfebc98cb6e3e98c521d08e382335737e1536de;hp=41a516c03741b4ff297d141a286d710a5f857236;p=trust_router.git Fix forward reference that causes CentOS build to fail. --- diff --git a/include/tr_config.h b/include/tr_config.h index 4ee5232..2418380 100644 --- a/include/tr_config.h +++ b/include/tr_config.h @@ -77,4 +77,6 @@ void tr_print_config(FILE *stream, TR_CFG *cfg); TR_IDP_REALM *tr_cfg_find_idp (TR_CFG *tr_cfg, TR_NAME *idp_id, TR_CFG_RC *rc); TR_RP_CLIENT *tr_cfg_find_rp (TR_CFG *tr_cfg, TR_NAME *rp_gss, TR_CFG_RC *rc); +TR_RP_CLIENT *tr_rp_client_lookup(TR_INSTANCE *tr, TR_NAME *gss_name); + #endif diff --git a/include/tr_rp.h b/include/tr_rp.h index d022cca..81a9c14 100644 --- a/include/tr_rp.h +++ b/include/tr_rp.h @@ -39,8 +39,6 @@ #define TR_MAX_GSS_NAMES 5 -typedef struct tr_instance TR_INSTANCE; - typedef struct tr_rp_client { struct tr_rp_client *next; struct tr_rp_client *comm_next; @@ -55,6 +53,4 @@ typedef struct tr_rp_realm { TR_NAME *realm_name; } TR_RP_REALM; -TR_RP_CLIENT *tr_rp_client_lookup(TR_INSTANCE *tr, TR_NAME *gss_name); - #endif