diff options
author | Andrew Tridgell <tridge@samba.org> | 2003-08-15 18:33:43 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2003-08-15 18:33:43 +0000 |
commit | 8e4ab747b02207671203d40cd2a78692da78faef (patch) | |
tree | c4ebd704ba8a88f67513a61f4e4e5e11e78d6132 /source4/client | |
parent | efacfb37fc0d7310c72c40bfed4b52ecaf365b11 (diff) | |
download | samba-8e4ab747b02207671203d40cd2a78692da78faef.tar.gz samba-8e4ab747b02207671203d40cd2a78692da78faef.tar.bz2 samba-8e4ab747b02207671203d40cd2a78692da78faef.zip |
more fixes from the IRIX compiler (thanks herb!)
(This used to be commit 4cf3839b727c77a727abb558bd9473119a092913)
Diffstat (limited to 'source4/client')
-rw-r--r-- | source4/client/client.c | 2 | ||||
-rw-r--r-- | source4/client/smbmount.c | 4 | ||||
-rw-r--r-- | source4/client/smbspool.c | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/source4/client/client.c b/source4/client/client.c index 7f05774836..e418f3b456 100644 --- a/source4/client/client.c +++ b/source4/client/client.c @@ -2896,7 +2896,7 @@ static void remember_query_host(const char *arg, *query_host = 0; *base_directory = 0; - setup_logging(argv[0],True); + setup_logging(argv[0],DEBUG_STDOUT); mem_ctx = talloc_init("client.c/main"); if (!mem_ctx) { d_printf("\nclient.c: Not enough memory\n"); diff --git a/source4/client/smbmount.c b/source4/client/smbmount.c index da340144fc..ac1a742ab7 100644 --- a/source4/client/smbmount.c +++ b/source4/client/smbmount.c @@ -396,7 +396,7 @@ static void send_fs_socket(char *the_service, char *mount_point, struct cli_stat /* here we are no longer interactive */ set_remote_machine_name("smbmount"); /* sneaky ... */ - setup_logging("mount.smbfs", False); + setup_logging("mount.smbfs", DEBUG_STDERR); reopen_logs(); DEBUG(0, ("mount.smbfs: entering daemon mode for service %s, pid=%d\n", the_service, sys_getpid())); @@ -857,7 +857,7 @@ static void parse_mount_smb(int argc, char **argv) DEBUGLEVEL = 1; /* here we are interactive, even if run from autofs */ - setup_logging("mount.smbfs",True); + setup_logging("mount.smbfs",DEBUG_STDERR); #if 0 /* JRA - Urban says not needed ? */ /* CLI_FORCE_ASCII=false makes smbmount negotiate unicode. The default diff --git a/source4/client/smbspool.c b/source4/client/smbspool.c index 43046bbad7..24d40114f0 100644 --- a/source4/client/smbspool.c +++ b/source4/client/smbspool.c @@ -182,7 +182,7 @@ static int smb_print(struct cli_state *, char *, FILE *); * Setup the SAMBA server state... */ - setup_logging("smbspool", True); + setup_logging("smbspool", DEBUG_STDOUT); in_client = True; /* Make sure that we tell lp_load we are */ |