1
0
mirror of https://github.com/samba-team/samba.git synced 2025-12-14 20:23:54 +03:00

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 commit is contained in:
Andrew Bartlett
-
parent 514c91b16b
commit 83c2d79774

View File

@@ -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);