From a72869d77b065c3926d56423ff1b3ec837e3ab87 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Thu, 11 Oct 2007 01:54:48 +0200 Subject: 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) --- source4/include/pstring.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4/include') diff --git a/source4/include/pstring.h b/source4/include/pstring.h index aee9d75a7f..0cbc964c34 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) -- cgit