summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2001-11-02 11:31:49 +0000
committerAndrew Bartlett <abartlet@samba.org>2001-11-02 11:31:49 +0000
commit83c2d7977445b511989b449959141aeed4bcf0b7 (patch)
tree29a225ea9251aaf7c2f52afbbf546ec7b3f6d1b9
parent514c91b16baca639bb04638042bf9894d881172a (diff)
downloadsamba-83c2d7977445b511989b449959141aeed4bcf0b7.tar.gz
samba-83c2d7977445b511989b449959141aeed4bcf0b7.tar.xz
samba-83c2d7977445b511989b449959141aeed4bcf0b7.zip
Return 1 (rather than 0) on failure. This may well help get the build farm
back into order, becouse its the inverse tests that are 'failing' - they get error 0 back and think that we just let sombody in without a password and the like. Andrew Bartlett
-rw-r--r--source/client/client.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/client/client.c b/source/client/client.c
index f58f71f8847..3047a9a61b9 100644
--- a/source/client/client.c
+++ b/source/client/client.c
@@ -2205,7 +2205,7 @@ static int process(char *base_directory)
cli = do_connect(desthost, service);
if (!cli) {
- return(False);
+ return 1;
}
if (*base_directory) do_cd(base_directory);