From 015aa4244b3feb8c2b8e0e5f037b9af344927ed8 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Fri, 2 Nov 2001 11:31:49 +0000 Subject: 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) --- source3/client/client.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- cgit