mirror of
https://github.com/samba-team/samba.git
synced 2025-12-06 16:23:49 +03:00
Converted most of the functions in lib/util_str.c to smb_ucs2_t equivalents.
Jeremy.
This commit is contained in:
@@ -703,10 +703,10 @@ typedef struct smb_wpasswd {
|
||||
#define fstrcat(d,s) safe_strcat((d),(s),sizeof(fstring)-1)
|
||||
|
||||
/* smb_ucs2_t versions of the above. */
|
||||
#define wpstrcpy(d,s) safe_wstrcpy((d),(s),sizeof(wpstring))
|
||||
#define wpstrcat(d,s) safe_wstrcat((d),(s),sizeof(wpstring))
|
||||
#define wfstrcpy(d,s) safe_wstrcpy((d),(s),sizeof(wfstring))
|
||||
#define wfstrcat(d,s) safe_wstrcat((d),(s),sizeof(wfstring))
|
||||
#define wpstrcpy(d,s) safe_strcpy_w((d),(s),sizeof(wpstring))
|
||||
#define wpstrcat(d,s) safe_strcat_w((d),(s),sizeof(wpstring))
|
||||
#define wfstrcpy(d,s) safe_strcpy_w((d),(s),sizeof(wfstring))
|
||||
#define wfstrcat(d,s) safe_strcat_w((d),(s),sizeof(wfstring))
|
||||
|
||||
#ifdef __COMPAR_FN_T
|
||||
#define QSORT_CAST (__compar_fn_t)
|
||||
|
||||
Reference in New Issue
Block a user