1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00

lib: Remove unused nstrcpy

Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>

Autobuild-User(master): Volker Lendecke <vl@samba.org>
Autobuild-Date(master): Mon Aug  4 09:58:16 CEST 2014 on sn-devel-104
This commit is contained in:
Volker Lendecke 2014-08-04 07:29:14 +02:00
parent 811e0e6f99
commit fb9d8c4026

View File

@ -43,11 +43,6 @@ do { \
const char *_fstrcat_src = (const char *)(s); \
strlcat((d),_fstrcat_src ? _fstrcat_src : "",sizeof(fstring)); \
} while (0)
#define nstrcpy(d,s) \
do { \
const char *_nstrcpy_src = (const char *)(s); \
strlcpy((d),_nstrcpy_src ? _nstrcpy_src : "",sizeof(fstring)); \
} while (0)
#define unstrcpy(d,s) \
do { \
const char *_unstrcpy_src = (const char *)(s); \