From: Miloš Mulač Date: Mon, 7 Mar 2005 17:37:10 +0000 (+0000) Subject: correct includes of context.h (should fix broken build) X-Git-Tag: glite-deployment-lb_R_1_1_1~15 X-Git-Url: http://scientific.zcu.cz/git/?a=commitdiff_plain;h=493110cbacedde4c97c6cef0ab58704938e1f44d;p=jra1mw.git correct includes of context.h (should fix broken build) --- diff --git a/org.glite.lb.common/interface/log_proto.h b/org.glite.lb.common/interface/log_proto.h index 048630d..0e4e6cf 100644 --- a/org.glite.lb.common/interface/log_proto.h +++ b/org.glite.lb.common/interface/log_proto.h @@ -3,6 +3,7 @@ #ident "$Header$" + /** * \file edg/workload/logging/common/log_proto.h * \brief common part of the logging protocol @@ -14,6 +15,8 @@ extern "C" { #endif +#include "glite/lb/context.h" + /** * default (noauth) user name */ @@ -68,7 +71,6 @@ extern "C" { */ #define EDG_WLL_LOG_CONNECTIONS_DEFAULT 4 - #ifdef __cplusplus } @@ -97,4 +99,5 @@ edg_wll_log_event_send( int conn_attempts, struct timeval *timeout); + #endif /* __EDG_WORKLOAD_LOGGING_COMMON_LOG_PROTO_H__ */ diff --git a/org.glite.lb.common/src/log_msg.c b/org.glite.lb.common/src/log_msg.c index 073360e..ea6260b 100644 --- a/org.glite.lb.common/src/log_msg.c +++ b/org.glite.lb.common/src/log_msg.c @@ -1,7 +1,7 @@ #include #include -#include "glite/lb/context-int.h" +#include "context-int.h" #define tv_sub(a, b) {\ (a).tv_usec -= (b).tv_usec;\