diff options
author | Stefan Metzmacher <metze@samba.org> | 2008-12-13 11:24:10 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2008-12-17 19:12:25 +0100 |
commit | 8df2140c18996e616e6fe1fcc8fd3e52ca5dcd74 (patch) | |
tree | edc9a59a16eefb32520d51a9609079022c94ccfa | |
parent | 372f700f4756b4c3d0a79dc4aa4be3ec0c9dc29d (diff) | |
download | samba-8df2140c18996e616e6fe1fcc8fd3e52ca5dcd74.tar.gz samba-8df2140c18996e616e6fe1fcc8fd3e52ca5dcd74.tar.bz2 samba-8df2140c18996e616e6fe1fcc8fd3e52ca5dcd74.zip |
s4:libcli/resolve: don't use __RESOLVE_H__ it might be used by system headers too
metze
-rw-r--r-- | source4/libcli/resolve/resolve.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source4/libcli/resolve/resolve.h b/source4/libcli/resolve/resolve.h index 942a0a0bd2..f83db3f71d 100644 --- a/source4/libcli/resolve/resolve.h +++ b/source4/libcli/resolve/resolve.h @@ -19,8 +19,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#ifndef __RESOLVE_H__ -#define __RESOLVE_H__ +#ifndef __LIBCLI_RESOLVE_H__ +#define __LIBCLI_RESOLVE_H__ struct socket_address; struct event_context; @@ -37,4 +37,4 @@ typedef NTSTATUS (*resolve_name_recv_fn)(struct composite_context *creq, struct interface; #include "libcli/resolve/lp_proto.h" -#endif /* __RESOLVE_H__ */ +#endif /* __LIBCLI_RESOLVE_H__ */ |