From: Jeffrey Altman Date: Thu, 15 Sep 2011 02:41:20 +0000 (-0400) Subject: Windows: mountpoints always have a trailing dot X-Git-Tag: upstream/1.6.1.pre1^2~224 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=7c1bba0052576bd3be51961856144644f88e8be6;p=packages%2Fo%2Fopenafs.git Windows: mountpoints always have a trailing dot when expanding a cell alias to a full cell name the trailing dot was forgotten when putting the mountpoint string back together. Reviewed-on: http://gerrit.openafs.org/5427 Reviewed-by: Jeffrey Altman Tested-by: Jeffrey Altman (cherry picked from commit 17be9b775c0be234879eeda66707581e23a18d08) Change-Id: I2e3fbfb922614d9888e9e6957bff66bbb407abfa Reviewed-on: http://gerrit.openafs.org/5429 Tested-by: BuildBot Reviewed-by: Derrick Brashear --- diff --git a/src/WINNT/afsd/cm_ioctl.c b/src/WINNT/afsd/cm_ioctl.c index b9f1240d0..6221557ff 100644 --- a/src/WINNT/afsd/cm_ioctl.c +++ b/src/WINNT/afsd/cm_ioctl.c @@ -2011,7 +2011,7 @@ cm_IoctlCreateMountPoint(struct cm_ioctl *ioctlp, struct cm_user *userp, cm_scac goto done; } - StringCbPrintfA(mpInfo, sizeof(mpInfo), "%c%s:%s", (char) *mpp, + StringCbPrintfA(mpInfo, sizeof(mpInfo), "%c%s:%s.", (char) *mpp, fullCell, fsvolume); } else {