summaryrefslogtreecommitdiff
path: root/source3/smbd
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2003-01-12 11:29:02 +0000
committerAndrew Bartlett <abartlet@samba.org>2003-01-12 11:29:02 +0000
commitebb60c0302482d347bed123795864c178defb08e (patch)
tree18bea8a221bdb45666e486a31a4b1cc256f504e8 /source3/smbd
parent6152b8455859dcb85cdd64933aadeafefdd8c938 (diff)
downloadsamba-ebb60c0302482d347bed123795864c178defb08e.tar.gz
samba-ebb60c0302482d347bed123795864c178defb08e.tar.bz2
samba-ebb60c0302482d347bed123795864c178defb08e.zip
Make the 'service' in make_connection() use an fstrcpy(), and an fstring,
becouse that is what it's input (reply_tcon_and_x) uses, and becouse we really don't want supprises for service names. Also remove a legacy #define, in favor of the lp_ equiv. Andrew Bartlett (This used to be commit 7854a439ac601d3c23703b115cd5a8d4257c7717)
Diffstat (limited to 'source3/smbd')
-rw-r--r--source3/smbd/reply.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/reply.c b/source3/smbd/reply.c
index ef5a090243..580878fe32 100644
--- a/source3/smbd/reply.c
+++ b/source3/smbd/reply.c
@@ -669,7 +669,7 @@ int reply_search(connection_struct *conn, char *inbuf,char *outbuf, int dum_size
if (!conn->dirptr)
goto SearchEmpty;
string_set(&conn->dirpath,dptr_path(dptr_num));
- fstrcpy(mask, dptr_wcard(dptr_num));
+ pstrcpy(mask, dptr_wcard(dptr_num));
}
if (can_open) {