diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-09-06 18:39:30 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-09-06 18:39:30 +0000 |
commit | 957b83abd01c0904dceb4f5c18c9d4fa99524c05 (patch) | |
tree | f5ed0958824cb52405346d93d6bd85eb57d4c99a /sysdeps/unix | |
parent | 951f68f1d54cfca18471d2f9ce819d3ffd4cfb77 (diff) | |
download | glibc-957b83abd01c0904dceb4f5c18c9d4fa99524c05.tar.gz glibc-957b83abd01c0904dceb4f5c18c9d4fa99524c05.tar.xz glibc-957b83abd01c0904dceb4f5c18c9d4fa99524c05.zip |
(where_is_shmfs): Correct test for filesystem type name of mount points.
Diffstat (limited to 'sysdeps/unix')
-rw-r--r-- | sysdeps/unix/sysv/linux/shm_open.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sysdeps/unix/sysv/linux/shm_open.c b/sysdeps/unix/sysv/linux/shm_open.c index 035942f04f..a96df2427c 100644 --- a/sysdeps/unix/sysv/linux/shm_open.c +++ b/sysdeps/unix/sysv/linux/shm_open.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000, 2001 Free Software Foundation, Inc. +/* Copyright (C) 2000, 2001, 2002 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -80,8 +80,8 @@ where_is_shmfs (void) while ((mp = __getmntent_r (fp, &resmem, buf, sizeof buf)) != NULL) /* The original name is "shm" but this got changed in early Linux 2.4.x to "tmpfs". */ - if ((strcmp (mp->mnt_type, "tmpfs") == 0) - || (strcmp (mp->mnt_type, "shm"))) + if (strcmp (mp->mnt_type, "tmpfs") == 0 + || strcmp (mp->mnt_type, "shm") == 0) { /* Found it. There might be more than one place where the filesystem is mounted but one is enough for us. */ |