From: Jeffrey Altman Date: Wed, 27 Aug 2008 12:47:23 +0000 (+0000) Subject: windows-short-names-20080827 X-Git-Tag: openafs-devel-1_5_61~862 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=bef68684fd7bb4e58e621766a0f2abbdfd15af80;p=packages%2Fo%2Fopenafs.git windows-short-names-20080827 LICENSE MIT plus and equal are not valid characters in short names. we replace them with left and right brace in order to minimize the instability in the file names. --- diff --git a/src/WINNT/afsd/cm_utils.c b/src/WINNT/afsd/cm_utils.c index 87cb64c2a..f46c326a7 100644 --- a/src/WINNT/afsd/cm_utils.c +++ b/src/WINNT/afsd/cm_utils.c @@ -440,7 +440,7 @@ char cm_8Dot3Mapping[42] = {'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', - 'V', 'W', 'X', 'Y', 'Z', '_', '-', '$', '#', '!', '+', '=' + 'V', 'W', 'X', 'Y', 'Z', '_', '-', '$', '#', '!', '{', '}' }; int cm_8Dot3MapSize = sizeof(cm_8Dot3Mapping);