summaryrefslogtreecommitdiffstats
path: root/source/winbindd/winbindd.c
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2007-10-19 10:34:06 +0200
committerStefan Metzmacher <metze@samba.org>2007-10-19 10:34:06 +0200
commit9cb1937fe8601e526b5c924930500e0a3b52abd5 (patch)
treea71ff32e7343f90631a29bb72a0e54f45fe2b610 /source/winbindd/winbindd.c
parentf35a266b3cbb3e5fa6a86be60f34fe340a3ca71f (diff)
downloadsamba-9cb1937fe8601e526b5c924930500e0a3b52abd5.tar.gz
samba-9cb1937fe8601e526b5c924930500e0a3b52abd5.tar.xz
samba-9cb1937fe8601e526b5c924930500e0a3b52abd5.zip
fix startup of smbd, nmbd, winbindd
jra: POPT_ARG_VAL arguments need int values. I assume there're more places like this in the cmdline tools. Please fix this properly, as my commit is just a hack to get make test working again. in samba4 we have a workaround for this see smbd/server.c metze
Diffstat (limited to 'source/winbindd/winbindd.c')
-rw-r--r--source/winbindd/winbindd.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/winbindd/winbindd.c b/source/winbindd/winbindd.c
index 97bbe063baa..057790a541b 100644
--- a/source/winbindd/winbindd.c
+++ b/source/winbindd/winbindd.c
@@ -984,10 +984,10 @@ static void process_loop(void)
int main(int argc, char **argv, char **envp)
{
pstring logfile;
- static bool is_daemon = False;
- static bool Fork = True;
- static bool log_stdout = False;
- static bool no_process_group = False;
+ static int is_daemon = False;
+ static int Fork = True;
+ static int log_stdout = False;
+ static int no_process_group = False;
struct poptOption long_options[] = {
POPT_AUTOHELP
{ "stdout", 'S', POPT_ARG_VAL, &log_stdout, True, "Log to stdout" },