The branch, v4-0-test has been updated
via d92597d29caf76e1c8d0858f066d7a30143392e9 (commit)
via 3a9514def21c448d344648d4a28f658fbcfc07eb (commit)
from d28f2cb678b334086f601505c88e56b9c1ee559d (commit)
http://gitweb.samba.org/?p=samba.git;a=shortlog;h=v4-0-test
- Log -----------------------------------------------------------------
commit d92597d29caf76e1c8d0858f066d7a30143392e9
Author: Michael Adam <[EMAIL PROTECTED]>
Date: Fri Mar 7 15:00:37 2008 +0100
torture: fix escape sequence in test_chkpath().
Michael
commit 3a9514def21c448d344648d4a28f658fbcfc07eb
Author: Michael Adam <[EMAIL PROTECTED]>
Date: Fri Mar 7 14:59:19 2008 +0100
configure: Add major version 4 to AC_INIT call.
Michael
-----------------------------------------------------------------------
Summary of changes:
source/configure.ac | 2 +-
source/torture/raw/chkpath.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
Changeset truncated at 500 lines:
diff --git a/source/configure.ac b/source/configure.ac
index 5ba4413..41f1bcf 100644
--- a/source/configure.ac
+++ b/source/configure.ac
@@ -4,7 +4,7 @@ dnl Process this file with autoconf to produce a configure
script.
dnl disabled 2.53 requirement - we do work with 2.52 on suse 7.3 for example
dnl AC_PREREQ(2.53)
-AC_INIT([samba],[],[EMAIL PROTECTED])
+AC_INIT([samba],[4],[EMAIL PROTECTED])
AC_CONFIG_SRCDIR([include/includes.h])
AC_CONFIG_HEADER(include/config_tmp.h)
diff --git a/source/torture/raw/chkpath.c b/source/torture/raw/chkpath.c
index fa69c92..7fd74e3 100644
--- a/source/torture/raw/chkpath.c
+++ b/source/torture/raw/chkpath.c
@@ -150,7 +150,7 @@ static bool test_chkpath(struct smbcli_state *cli, struct
torture_context *tctx)
ret &= test_path_ex(cli, tctx, ((char *)BASEDIR"\\\\") + 1, BASEDIR,
NT_STATUS_OK, NT_STATUS_OK);
ret &= test_path_ex(cli, tctx, ((char *)BASEDIR"\\foo\\..") + 1,
BASEDIR, NT_STATUS_OK, NT_STATUS_OK);
ret &= test_path_ex(cli, tctx, ((char *)BASEDIR"\\f\\o\\o\\..\\..\\..")
+ 1, BASEDIR, NT_STATUS_OK, NT_STATUS_OK);
- ret &= test_path_ex(cli, tctx, ((char *)BASEDIR"\\foo\\\\\..\\\\") + 1,
BASEDIR, NT_STATUS_OK, NT_STATUS_OK);
+ ret &= test_path_ex(cli, tctx, ((char *)BASEDIR"\\foo\\\\..\\\\") + 1,
BASEDIR, NT_STATUS_OK, NT_STATUS_OK);
ret &= test_path_ex(cli, tctx, BASEDIR"\\", BASEDIR, NT_STATUS_OK,
NT_STATUS_OK);
ret &= test_path_ex(cli, tctx, BASEDIR"\\\\..\\"BASEDIR, BASEDIR,
NT_STATUS_OK, NT_STATUS_OK);
ret &= test_path_ex(cli, tctx, BASEDIR"\\\\\\", BASEDIR, NT_STATUS_OK,
NT_STATUS_OK);
--
Samba Shared Repository