]> git.michaelhowe.org Git - packages/o/openafs.git/commitdiff
Windows: mountpoints always have a trailing dot
authorJeffrey Altman <jaltman@your-file-system.com>
Thu, 15 Sep 2011 02:41:20 +0000 (22:41 -0400)
committerJeffrey Altman <jaltman@openafs.org>
Thu, 15 Sep 2011 02:47:08 +0000 (19:47 -0700)
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 <jaltman@openafs.org>
Tested-by: Jeffrey Altman <jaltman@openafs.org>
src/WINNT/afsd/cm_ioctl.c

index 5d246633bb358f1b92cf8ee2cb7ace1351209432..66a625ce0a66408f5c283e46612751c6d5fadca2 100644 (file)
@@ -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 {