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.8.0_pre1^2~3273 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=17be9b775c0be234879eeda66707581e23a18d08;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. Change-Id: I82a84380175d9ef5c41ef29d9043671d264df589 Reviewed-on: http://gerrit.openafs.org/5427 Reviewed-by: Jeffrey Altman Tested-by: Jeffrey Altman --- diff --git a/src/WINNT/afsd/cm_ioctl.c b/src/WINNT/afsd/cm_ioctl.c index 5d246633b..66a625ce0 100644 --- a/src/WINNT/afsd/cm_ioctl.c +++ b/src/WINNT/afsd/cm_ioctl.c @@ -2014,7 +2014,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 {