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/client | |
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/client')
-rw-r--r-- | source3/client/client.c | 2 | ||||
-rw-r--r-- | source3/client/clitar.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/source3/client/client.c b/source3/client/client.c index 42db009c58..c2fec17d7e 100644 --- a/source3/client/client.c +++ b/source3/client/client.c @@ -23,7 +23,7 @@ #define NO_SYSLOG #include "includes.h" -#include "../client/client_proto.h" +#include "client/client_proto.h" #ifndef REGISTER #define REGISTER 0 #endif diff --git a/source3/client/clitar.c b/source3/client/clitar.c index 4cadef558d..b4d6273f7b 100644 --- a/source3/client/clitar.c +++ b/source3/client/clitar.c @@ -37,7 +37,7 @@ #include "includes.h" #include "clitar.h" -#include "../client/client_proto.h" +#include "client/client_proto.h" static int clipfind(char **aret, int ret, char *tok); |