r4370: Don't assume the compiler supports declarations after statements.
authorJelmer Vernooij <jelmer@samba.org>
Sun, 26 Dec 2004 21:06:43 +0000 (21:06 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 15:53:46 +0000 (10:53 -0500)
(This used to be commit 7fa2caec5ec2de4c5e7359621745a65ca9df255c)

source3/rpc_server/srv_samr_util.c

index c1faede9477ee55e91d4652635f2f3f3d2efa2f6..dd12a438caeeade3399fc372f162a551407db17e 100644 (file)
@@ -251,6 +251,7 @@ void copy_id21_to_sam_passwd(SAM_ACCOUNT *to, SAM_USER_INFO_21 *from)
        }
 
        if (from->fields_present & ACCT_LOGON_HOURS) {
+               pstring old, new;
                DEBUG(15,("INFO_21 LOGON_DIVS: %08X -> %08X\n",pdb_get_logon_divs(to),from->logon_divs));
                if (from->logon_divs != pdb_get_logon_divs(to)) {
                        pdb_set_logon_divs(to, from->logon_divs, PDB_CHANGED);
@@ -262,7 +263,6 @@ void copy_id21_to_sam_passwd(SAM_ACCOUNT *to, SAM_USER_INFO_21 *from)
                }
 
                DEBUG(15,("INFO_21 LOGON_HRS.HOURS: %s -> %s\n",pdb_get_hours(to),from->logon_hrs.hours));
-               pstring old, new;
                pdb_sethexhours(old, pdb_get_hours(to));
                pdb_sethexhours(new, (const char *)from->logon_hrs.hours);
                if (!strequal(old, new)) {