diff options
author | Tim Potter <tpot@samba.org> | 2004-10-07 04:01:18 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 10:52:55 -0500 |
commit | b4cf9e95059071df49b34ff8574e48cb96f42da1 (patch) | |
tree | d83b0ff529ac5d7d3bf1aee51c9b8ca2e3101751 /source3/libsmb | |
parent | 66e689478a700d669a1abfcb272b4191aa528658 (diff) | |
download | samba-b4cf9e95059071df49b34ff8574e48cb96f42da1.tar.gz samba-b4cf9e95059071df49b34ff8574e48cb96f42da1.tar.bz2 samba-b4cf9e95059071df49b34ff8574e48cb96f42da1.zip |
r2835: Since we always have -I. and -I$(srcdir) in CFLAGS, we can get rid of
'..' from all #include preprocessor commands. This fixes bugzilla #1880
where OpenVMS gets confused about the '.' characters.
(This used to be commit 7f161702fa4916979602cc0295919b541912acd6)
Diffstat (limited to 'source3/libsmb')
-rw-r--r-- | source3/libsmb/libsmb_cache.c | 2 | ||||
-rw-r--r-- | source3/libsmb/libsmb_compat.c | 2 | ||||
-rw-r--r-- | source3/libsmb/libsmbclient.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/source3/libsmb/libsmb_cache.c b/source3/libsmb/libsmb_cache.c index cb40b4aaa6..caf226c5a6 100644 --- a/source3/libsmb/libsmb_cache.c +++ b/source3/libsmb/libsmb_cache.c @@ -27,7 +27,7 @@ * Define this to get the real SMBCFILE and SMBCSRV structures */ #define _SMBC_INTERNAL -#include "../include/libsmbclient.h" +#include "include/libsmbclient.h" /* * Structure we use if internal caching mechanism is used diff --git a/source3/libsmb/libsmb_compat.c b/source3/libsmb/libsmb_compat.c index cc23835ae3..c4be848cc1 100644 --- a/source3/libsmb/libsmb_compat.c +++ b/source3/libsmb/libsmb_compat.c @@ -25,7 +25,7 @@ #include "includes.h" -#include "../include/libsmb_internal.h" +#include "include/libsmb_internal.h" struct smbc_compat_fdlist { SMBCFILE * file; diff --git a/source3/libsmb/libsmbclient.c b/source3/libsmb/libsmbclient.c index e44bdea2d3..2c813a8481 100644 --- a/source3/libsmb/libsmbclient.c +++ b/source3/libsmb/libsmbclient.c @@ -24,7 +24,7 @@ #include "includes.h" -#include "../include/libsmb_internal.h" +#include "include/libsmb_internal.h" /* * Internal flags for extended attributes |