diff options
-rw-r--r-- | source4/include/pstring.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/source4/include/pstring.h b/source4/include/pstring.h index f3931fd671..aee9d75a7f 100644 --- a/source4/include/pstring.h +++ b/source4/include/pstring.h @@ -30,11 +30,11 @@ #define PSTRING_LEN 1024 #define FSTRING_LEN 256 -typedef char pstring[PSTRING_LEN]; -typedef char fstring[FSTRING_LEN]; +_DEPRECATED_ typedef char pstring[PSTRING_LEN]; +_DEPRECATED_ 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) +#define pstrcpy(d,s) safe_strcpy((d),(s),sizeof(pstring)-1) +#define pstrcat(d,s) safe_strcat((d),(s),sizeof(pstring)-1) #define fstrcpy(d,s) safe_strcpy((d),(s),sizeof(fstring)-1) #define fstrcat(d,s) safe_strcat((d),(s),sizeof(fstring)-1) |