diff options
author | Andrew Bartlett <abartlet@samba.org> | 2007-10-11 01:54:48 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2007-12-21 05:42:55 +0100 |
commit | a72869d77b065c3926d56423ff1b3ec837e3ab87 (patch) | |
tree | 3cc041eba0bc2fe9eb6567668b662bcb3c887ebe /source4 | |
parent | 68c550e8e4f0ee60e42d955801f9e4dd5b4767ed (diff) | |
download | samba-a72869d77b065c3926d56423ff1b3ec837e3ab87.tar.gz samba-a72869d77b065c3926d56423ff1b3ec837e3ab87.tar.xz samba-a72869d77b065c3926d56423ff1b3ec837e3ab87.zip |
r25619: As perhaps could have been expected, the CFLAGS hack broke all non-gcc
compilers.
Instead, as jelmer suggests, remove the depricated marker on fstring,
for as long as it is used in the samba3 winbind protocol.
Andrew Bartlett
(This used to be commit b15df834ae6506a5c585ec1ede8bf513339d9b13)
Diffstat (limited to 'source4')
-rw-r--r-- | source4/include/pstring.h | 2 | ||||
-rw-r--r-- | source4/nsswitch/config.mk | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/source4/include/pstring.h b/source4/include/pstring.h index aee9d75a7fb..0cbc964c34c 100644 --- a/source4/include/pstring.h +++ b/source4/include/pstring.h @@ -31,7 +31,7 @@ #define FSTRING_LEN 256 _DEPRECATED_ typedef char pstring[PSTRING_LEN]; -_DEPRECATED_ typedef char fstring[FSTRING_LEN]; +typedef char fstring[FSTRING_LEN]; #define pstrcpy(d,s) safe_strcpy((d),(s),sizeof(pstring)-1) #define pstrcat(d,s) safe_strcat((d),(s),sizeof(pstring)-1) diff --git a/source4/nsswitch/config.mk b/source4/nsswitch/config.mk index 481841cb9ec..89820245165 100644 --- a/source4/nsswitch/config.mk +++ b/source4/nsswitch/config.mk @@ -4,7 +4,6 @@ SO_VERSION = 0 DESCRIPTION = Client library for communicating with winbind OBJ_FILES = wb_common.o PRIVATE_DEPENDENCIES = SOCKET_WRAPPER -CFLAGS = -Wno-deprecated-declarations ################################# # Start BINARY nsstest |