From 02da5189f1c2a07a7ac02cf51e23782f70829f34 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Wed, 22 Feb 2006 00:34:35 +0000 Subject: [PATCH] r13607: Fix compile - don't ref auto variable in a structure initialization. Fix from Richard Bollinger . Jeremy. --- source/utils/pdbedit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/utils/pdbedit.c b/source/utils/pdbedit.c index f1e4fb65428..bd336765474 100644 --- a/source/utils/pdbedit.c +++ b/source/utils/pdbedit.c @@ -655,7 +655,7 @@ int main (int argc, char **argv) static char *pwd_can_change_time = NULL; static char *pwd_must_change_time = NULL; static char *pwd_time_format = NULL; - BOOL pw_from_stdin = False; + static BOOL pw_from_stdin = False; struct pdb_methods *bdef = NULL; poptContext pc; -- 2.11.4.GIT