[SCM] Samba Shared Repository - branch master updated

Björn Jacke bjacke at samba.org
Fri Apr 17 12:01:02 MDT 2015


The branch, master has been updated
       via  60fbfc5 vfs_fruit: also map characters below 0x20
      from  9b33732 ctdb: Coverity fix for CID 1125630

https://git.samba.org/?p=samba.git;a=shortlog;h=master


- Log -----------------------------------------------------------------
commit 60fbfc5563ada64ea145e93ceaee791165d78e64
Author: Björn Jacke <bj at sernet.de>
Date:   Wed Apr 15 21:48:27 2015 +0200

    vfs_fruit: also map characters below 0x20
    
    we need to map 0x01-0x1F to 0xF001-0xF01F as 0x01-0x1F are win32 illegal
    characters.
    
    see https://support.microsoft.com/en-us/kb/kbview/117258
    
    Even if the MS KB article writes "invalid ntfs characters" they are actually
    not illegal in ntfs, just in the win32 API.
    
    BUG: https://bugzilla.samba.org/show_bug.cgi?id=11221
    
    Signed-off-by: Bjoern Jacke <bj at sernet.de>
    Reviewed-by: Ralf Böhme <slow at samba.org>
    
    Autobuild-User(master): Björn Jacke <bj at sernet.de>
    Autobuild-Date(master): Fri Apr 17 20:00:48 CEST 2015 on sn-devel-104

-----------------------------------------------------------------------

Summary of changes:
 source3/modules/vfs_fruit.c | 8 ++++++++
 1 file changed, 8 insertions(+)


Changeset truncated at 500 lines:

diff --git a/source3/modules/vfs_fruit.c b/source3/modules/vfs_fruit.c
index 74ea8f8..0a0c081 100644
--- a/source3/modules/vfs_fruit.c
+++ b/source3/modules/vfs_fruit.c
@@ -2041,6 +2041,14 @@ static int fruit_connect(vfs_handle_struct *handle,
 		lp_do_parameter(
 			SNUM(handle->conn),
 			"catia:mappings",
+			"0x01:0xf001,0x02:0xf002,0x03:0xf003,0x04:0xf004,"
+			"0x05:0xf005,0x06:0xf006,0x07:0xf007,0x08:0xf008,"
+			"0x09:0xf009,0x0a:0xf00a,0x0b:0xf00b,0x0c:0xf00c,"
+			"0x0d:0xf00d,0x0e:0xf00e,0x0f:0xf00f,0x10:0xf010,"
+			"0x11:0xf011,0x12:0xf012,0x13:0xf013,0x14:0xf014,"
+			"0x15:0xf015,0x16:0xf016,0x17:0xf017,0x18:0xf018,"
+			"0x19:0xf019,0x1a:0xf01a,0x1b:0xf01b,0x1c:0xf01c,"
+			"0x1d:0xf01d,0x1e:0xf01e,0x1f:0xf01f,"
 			"0x22:0xf020,0x2a:0xf021,0x3a:0xf022,0x3c:0xf023,"
 			"0x3e:0xf024,0x3f:0xf025,0x5c:0xf026,0x7c:0xf027,"
 			"0x0d:0xf00d");


-- 
Samba Shared Repository


More information about the samba-cvs mailing list