Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 25 Feb 2021 18:58:41 GMT
From:      Robert Wing <rew@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: d9e70f5d97c6 - stable/12 - automount(8): fix absolute path when creating a mountpoint
Message-ID:  <202102251858.11PIwfOY021333@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch stable/12 has been updated by rew:

URL: https://cgit.FreeBSD.org/src/commit/?id=d9e70f5d97c63ae5dba93e9b026d1cfa1b1a4759

commit d9e70f5d97c63ae5dba93e9b026d1cfa1b1a4759
Author:     Robert Wing <rew@FreeBSD.org>
AuthorDate: 2021-02-17 09:22:23 +0000
Commit:     Robert Wing <rew@FreeBSD.org>
CommitDate: 2021-02-25 18:57:37 +0000

    automount(8): fix absolute path when creating a mountpoint
    
    When executing automount(8), it will attempt to create the directory where an
    autofs filesystem is to be mounted. Explicity set the root path for this
    directory to "/".
    
    This fixes the issue where the directory being created was being treated as a
    relative path instead of an absolute path (as expected).
    
    PR:     224601
    Reported by:    kusumi.tomohiro@gmail.com
    Reviewed by:    trasz
    Differential Revision:  https://reviews.freebsd.org/D27832
    
    (cherry picked from commit 63640b2f552c0476f50484635eb9888eafcd22dc)
---
 usr.sbin/autofs/common.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/usr.sbin/autofs/common.c b/usr.sbin/autofs/common.c
index 65b8737bcff4..b99583652d95 100644
--- a/usr.sbin/autofs/common.c
+++ b/usr.sbin/autofs/common.c
@@ -141,7 +141,7 @@ create_directory(const char *path)
 	 */
 	copy = tofree = checked_strdup(path + 1);
 
-	partial = checked_strdup("");
+	partial = checked_strdup("/");
 	for (;;) {
 		component = strsep(&copy, "/");
 		if (component == NULL)



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202102251858.11PIwfOY021333>