r9885: Fix code before declarations.
authorTim Potter <tpot@samba.org>
Thu, 1 Sep 2005 09:14:35 +0000 (09:14 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 18:36:20 +0000 (13:36 -0500)
source/lib/samba3/smbpasswd.c

index baddb82545b4b42c09d89ba5f3063948b780256f..483fbcfe05ea1f7d537083860c05a1e10aa7a5e5 100644 (file)
@@ -213,9 +213,10 @@ NTSTATUS samba3_read_smbpasswd(const char *filename, TALLOC_CTX *ctx, struct sam
 {
        int numlines;
        char **lines;
+       int i;
+
        *count = 0;
        *accounts = NULL;
-       int i;
 
        lines = file_lines_load(filename, &numlines, ctx);