diff options
author | Andrew Tridgell <tridge@samba.org> | 2001-05-01 04:05:53 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2001-05-01 04:05:53 +0000 |
commit | 7e82811d2d1b9ed06767625fff12755ced83bcad (patch) | |
tree | 49ef2dd6422af48c308648fabe7f313e142026c8 /source3/utils | |
parent | e51cc47cec2e3a5fe4e23310f497bf6a13b0a577 (diff) | |
download | samba-7e82811d2d1b9ed06767625fff12755ced83bcad.tar.gz samba-7e82811d2d1b9ed06767625fff12755ced83bcad.tar.bz2 samba-7e82811d2d1b9ed06767625fff12755ced83bcad.zip |
fixed some uninitialised variables
(This used to be commit 5d899e51a4fc4e872da550b88ef603dbd2d8391f)
Diffstat (limited to 'source3/utils')
-rw-r--r-- | source3/utils/smbcacls.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/utils/smbcacls.c b/source3/utils/smbcacls.c index 3566ccb28c..66b15ea1ac 100644 --- a/source3/utils/smbcacls.c +++ b/source3/utils/smbcacls.c @@ -817,7 +817,7 @@ You can string acls together with spaces, commas or newlines\n\ char *p; static pstring servicesf = CONFIGFILE; struct cli_state *cli=NULL; - enum acl_mode mode; + enum acl_mode mode = 0; char *the_acl = NULL; enum chown_mode change_mode = REQUEST_NONE; int result; |