diff options
author | Günther Deschner <gd@samba.org> | 2010-02-25 19:31:06 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2010-02-25 19:31:06 +0100 |
commit | 166a3821c985696572359a38a1b75cc96b600a15 (patch) | |
tree | 39246f18444f5762529acec7404414792857c9cf /source3/lib | |
parent | 8ee516eb9efdc07852de0f2785075323cfd3ead3 (diff) | |
download | samba-166a3821c985696572359a38a1b75cc96b600a15.tar.gz samba-166a3821c985696572359a38a1b75cc96b600a15.tar.bz2 samba-166a3821c985696572359a38a1b75cc96b600a15.zip |
s3-nltest: fix uninitialized query level.
Guenther
Diffstat (limited to 'source3/lib')
-rw-r--r-- | source3/lib/netapi/examples/netlogon/nltest.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/netapi/examples/netlogon/nltest.c b/source3/lib/netapi/examples/netlogon/nltest.c index a9fe6dec9f..9dc70daa61 100644 --- a/source3/lib/netapi/examples/netlogon/nltest.c +++ b/source3/lib/netapi/examples/netlogon/nltest.c @@ -108,7 +108,7 @@ int main(int argc, const char **argv) const char *server_name = NULL; char *opt_domain = NULL; int opt_dbflag = 0; - uint32_t query_level; + uint32_t query_level = 0; uint8_t *buffer = NULL; poptContext pc; |