From 7dc6dd58843cf1332964b7119fb683310fc4e3c7 Mon Sep 17 00:00:00 2001 From: Jim McDonough Date: Thu, 4 Mar 2004 16:24:13 +0000 Subject: Fix build farm, older compilers won't let you declare variables right in the middle of the code. I just love catching jra on stuff like this, after all the crap I've done. :-) (This used to be commit dc7dc5175847243d821dd33c1678af1b785dfaf7) --- source3/smbd/reply.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/smbd/reply.c') diff --git a/source3/smbd/reply.c b/source3/smbd/reply.c index 051aaafb45..c0d5234f47 100644 --- a/source3/smbd/reply.c +++ b/source3/smbd/reply.c @@ -1544,8 +1544,8 @@ NTSTATUS unlink_internals(connection_struct *conn, int dirtype, char *name) while ((dname = ReadDirName(dirptr))) { pstring fname; - pstrcpy(fname,dname); BOOL sys_direntry = False; + pstrcpy(fname,dname); /* Quick check for "." and ".." */ if (fname[0] == '.') { -- cgit