From 6d9b24de782b04466ca3c1ce6f6e82d54e93d2f3 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Wed, 22 Oct 2008 04:25:00 +0200 Subject: Remove pstring usages. --- source4/client/smbmount.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'source4/client') diff --git a/source4/client/smbmount.c b/source4/client/smbmount.c index 37c9eaadc4..d2e98eb140 100644 --- a/source4/client/smbmount.c +++ b/source4/client/smbmount.c @@ -24,6 +24,9 @@ #include #include +#define pstrcpy(d,s) safe_strcpy((d),(s),sizeof(pstring)-1) +#define pstrcat(d,s) safe_strcat((d),(s),sizeof(pstring)-1) + static pstring credentials; static pstring my_netbios_name; static pstring password; -- cgit