diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2006-09-06 12:28:01 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:17:45 -0500 |
commit | 873749f2189ecf1fbfdc681df4dd304a17716279 (patch) | |
tree | 3c130ca5c25631c0aed8c9888b33b42e2be28510 /source4/torture | |
parent | f057742ef3dd821170303d548f5fee8b6097805d (diff) | |
download | samba-873749f2189ecf1fbfdc681df4dd304a17716279.tar.gz samba-873749f2189ecf1fbfdc681df4dd304a17716279.tar.bz2 samba-873749f2189ecf1fbfdc681df4dd304a17716279.zip |
r18168: Use {NULL} rather than POPT_TABLEEND, which is not always available.
(This used to be commit 8b622c5ded0732df0eaf9f6226f52a27b6eacd73)
Diffstat (limited to 'source4/torture')
-rw-r--r-- | source4/torture/smbiconv.c | 2 | ||||
-rw-r--r-- | source4/torture/smbtorture.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/source4/torture/smbiconv.c b/source4/torture/smbiconv.c index 0cd16278ee..02f053395d 100644 --- a/source4/torture/smbiconv.c +++ b/source4/torture/smbiconv.c @@ -183,7 +183,7 @@ int main(int argc, char *argv[]) { "to-code", 't', POPT_ARG_STRING, &to, 0, "Encoding for output" }, { "output", 'o', POPT_ARG_STRING, &output, 0, "Write output to this file" }, { "preload-modules", 'p', POPT_ARG_STRING, &preload_modules[0], 0, "Modules to load" }, - POPT_TABLEEND + { NULL } }; setlinebuf(stdout); diff --git a/source4/torture/smbtorture.c b/source4/torture/smbtorture.c index d66e11b01b..b924b37c23 100644 --- a/source4/torture/smbtorture.c +++ b/source4/torture/smbtorture.c @@ -410,7 +410,7 @@ const static struct torture_ui_ops quiet_ui_ops = { POPT_COMMON_CONNECTION POPT_COMMON_CREDENTIALS POPT_COMMON_VERSION - POPT_TABLEEND + { NULL } }; #ifdef HAVE_SETBUFFER |