summaryrefslogtreecommitdiff
path: root/source3/rpcclient
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2002-07-29 23:50:54 +0000
committerTim Potter <tpot@samba.org>2002-07-29 23:50:54 +0000
commit362f534fa1152e9fc3d195bd1200b4c5d3e037e2 (patch)
tree9c7211ed986b8c6016a1cd4d5be13cfa7d51e7d1 /source3/rpcclient
parentc17dc6c55c3a5a2912028a1d6a713f26b3b91c63 (diff)
downloadsamba-362f534fa1152e9fc3d195bd1200b4c5d3e037e2.tar.gz
samba-362f534fa1152e9fc3d195bd1200b4c5d3e037e2.tar.bz2
samba-362f534fa1152e9fc3d195bd1200b4c5d3e037e2.zip
Our include popt is starting to get a bit old - fixed some compile
problems here. Also fixed some non-constant initialisers in samsync. (This used to be commit 33bd7214736dafd5927d63af5f8510646b81e7df)
Diffstat (limited to 'source3/rpcclient')
-rw-r--r--source3/rpcclient/samsync.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/rpcclient/samsync.c b/source3/rpcclient/samsync.c
index 938a843d15..3694eb47df 100644
--- a/source3/rpcclient/samsync.c
+++ b/source3/rpcclient/samsync.c
@@ -594,7 +594,7 @@ struct poptOption popt_common_auth_info[] = {
"[DOMAIN\\]username[%password]" },
{ "domain", 'W', POPT_ARG_STRING, NULL, 'W', "Set domain name",
"DOMAIN"},
- POPT_TABLEEND
+ { 0 }
};
static BOOL popt_interactive;
@@ -607,7 +607,7 @@ BOOL popt_common_is_interactive(void)
struct poptOption popt_common_interactive[] = {
{ "interactive", 'i', POPT_ARG_NONE, &popt_interactive, 'i',
"Log to stdout" },
- POPT_TABLEEND
+ { 0 }
};
int main(int argc, char **argv)
@@ -634,7 +634,7 @@ struct poptOption popt_common_interactive[] = {
{ NULL, 0, POPT_ARG_INCLUDE_TABLE, popt_common_auth_info },
{ NULL, 0, POPT_ARG_INCLUDE_TABLE, popt_common_interactive },
POPT_AUTOHELP
- POPT_TABLEEND
+ { 0 }
};
/* Read command line options */