[SSSD] [PATCH] Remove include recursion

Lukas Slebodnik lslebodn at redhat.com
Thu Aug 15 06:54:44 UTC 2013


ehlo,

Header file proxy.h included itself.
It is harmless, because we have in header files conditional build.

#ifndef __PROXY_H__
#define __PROXY_H__
.. snip ..
#endif

On the other side it does not make sense.

Simple patch is attached.

LS
-------------- next part --------------
>From caa1e77341dd8ba660f7b435027bfeaa400c0230 Mon Sep 17 00:00:00 2001
From: Lukas Slebodnik <lslebodn at redhat.com>
Date: Thu, 15 Aug 2013 08:45:03 +0200
Subject: [PATCH] Remove include recursion

Header file proxy.h included itself.
---
 src/providers/proxy/proxy.h | 1 -
 1 file changed, 1 deletion(-)

diff --git a/src/providers/proxy/proxy.h b/src/providers/proxy/proxy.h
index db0fcb43875c5e63759fe8e0d031263e289c0677..29dad6d51bd356c4a87db3f42482acff5c7c3920 100644
--- a/src/providers/proxy/proxy.h
+++ b/src/providers/proxy/proxy.h
@@ -39,7 +39,6 @@
 #include "util/util.h"
 #include "providers/dp_backend.h"
 #include "db/sysdb.h"
-#include "proxy.h"
 #include "sss_client/nss_compat.h"
 #include <dhash.h>
 
-- 
1.8.3.1



More information about the sssd-devel mailing list