diff options
Diffstat (limited to 'source4/include/pstring.h')
-rw-r--r-- | source4/include/pstring.h | 2 |
1 files changed, 1 insertions, 1 deletions
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) |