From 6152b8455859dcb85cdd64933aadeafefdd8c938 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Sat, 11 Jan 2003 12:33:00 +0000 Subject: While the usage is most bisarre, this fixes up another fstring/pstring mixup. (In this case, an fstrcpy() into a pstring, ie harmless). Andrew Bartlett (This used to be commit 7b92d26d479dbc0923484967936511cfc645c5f4) --- source3/wrepld/process.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'source3/wrepld') diff --git a/source3/wrepld/process.c b/source3/wrepld/process.c index aca0500614..1f96dc996c 100644 --- a/source3/wrepld/process.c +++ b/source3/wrepld/process.c @@ -498,7 +498,8 @@ static void send_entry_request(GENERIC_PACKET *q, GENERIC_PACKET *r) for (kbuf = tdb_firstkey(tdb); kbuf.dptr; newkey = tdb_nextkey(tdb, kbuf), safe_free(kbuf.dptr), kbuf=newkey) { - pstring name_type, name, ip_str; + fstring name_type; + pstring name, ip_str; char *p; int type = 0; int nb_flags; -- cgit