From: Todd C. Miller Date: Mon, 17 May 2004 22:21:15 +0000 (+0000) Subject: filesystem -> file system X-Git-Tag: SUDO_1_6_8~127 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e6f074282f7d6b7973eccacd7ab7036ffcce17d2;p=sudo filesystem -> file system --- diff --git a/UPGRADE b/UPGRADE index 1b37e6337..5e1339521 100644 --- a/UPGRADE +++ b/UPGRADE @@ -65,4 +65,4 @@ o Upgrading from a version prior to 1.5: that if have a means of distributing sudo you distribute the new binaries first, then the new sudoers file (or you can leave sudoers as is and sudo will fix the permissions itself as long - as sudoers is on a local filesystem). + as sudoers is on a local file system). diff --git a/sudo.c b/sudo.c index fde4a8fcd..a0169fbbb 100644 --- a/sudo.c +++ b/sudo.c @@ -851,7 +851,7 @@ check_sudoers() /* * Fix the mode and group on sudoers file from old default. - * Only works if filesystem is readable/writable by root. + * Only works if file system is readable/writable by root. */ if ((rootstat = stat_sudoers(_PATH_SUDOERS, &statbuf)) == 0 && SUDOERS_UID == statbuf.st_uid && SUDOERS_MODE != 0400 && diff --git a/visudo.c b/visudo.c index 0c24bfc43..66cae343a 100644 --- a/visudo.c +++ b/visudo.c @@ -443,11 +443,11 @@ main(argc, argv) /* * Now that we have a sane stmp file (parses ok) it needs to be * rename(2)'d to sudoers. If the rename(2) fails we try using - * mv(1) in case stmp and sudoers are on different filesystems. + * mv(1) in case stmp and sudoers are on different file systems. */ if (rename(stmp, sudoers)) { if (errno == EXDEV) { - warnx("%s and %s not on the same filesystem, using mv to rename", + warnx("%s and %s not on the same file system, using mv to rename", stmp, sudoers); /* Build up argument vector for the command */