1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-04-20 02:36:16 +02:00

maint: fix a comment in the generated src/fs-is-local.h file

Reported by Bruno Haible in
<https://lists.gnu.org/r/coreutils/2025-11/msg00113.html>.

* src/extract-magic ($magic_comment): Mention that the function returns
1 if the file system is local and 0 if it is remote.
This commit is contained in:
Collin Funk
2025-11-11 15:37:44 -08:00
parent d6fc91f37a
commit b8675fe98c

View File

@@ -114,8 +114,8 @@ EOF
my $map_comment = <<EOF;
/* Map each S_MAGIC_* value to 1, 0 or -1.
1 if it is known to be a remote file system type,
0 if it is known to be a local file system type, or -1 otherwise. */
1 if it is known to be a local file system type,
0 if it is known to be a remote file system type, or -1 otherwise. */
EOF
my $magic_comment = <<EOF;
/* Define the magic numbers as given by statfs(2).