summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2010-02-25 19:31:06 +0100
committerGünther Deschner <gd@samba.org>2010-02-25 19:31:06 +0100
commit166a3821c985696572359a38a1b75cc96b600a15 (patch)
tree39246f18444f5762529acec7404414792857c9cf /source3
parent8ee516eb9efdc07852de0f2785075323cfd3ead3 (diff)
downloadsamba-166a3821c985696572359a38a1b75cc96b600a15.tar.gz
samba-166a3821c985696572359a38a1b75cc96b600a15.tar.bz2
samba-166a3821c985696572359a38a1b75cc96b600a15.zip
s3-nltest: fix uninitialized query level.
Guenther
Diffstat (limited to 'source3')
-rw-r--r--source3/lib/netapi/examples/netlogon/nltest.c2
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;