summaryrefslogtreecommitdiff
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
commit015aa4244b3feb8c2b8e0e5f037b9af344927ed8 (patch)
treee392f805496027796a0c6819d249e7981ca6b4d3
parentacb81fe408f0e674088f0952aaba442ddb494b0c (diff)
downloadsamba-015aa4244b3feb8c2b8e0e5f037b9af344927ed8.tar.gz
samba-015aa4244b3feb8c2b8e0e5f037b9af344927ed8.tar.bz2
samba-015aa4244b3feb8c2b8e0e5f037b9af344927ed8.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 (This used to be commit 83c2d7977445b511989b449959141aeed4bcf0b7)
-rw-r--r--source3/client/client.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/client/client.c b/source3/client/client.c
index f58f71f884..3047a9a61b 100644
--- a/source3/client/client.c
+++ b/source3/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);