diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-11-28 07:40:13 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-11-28 07:40:13 +0000 |
commit | 49f3a758597f7904ba7e779156df8f9b61c06303 (patch) | |
tree | e1f09e4f949ff0a76acba7fbbeb3192e5311d2c8 /misc/mntent_r.c | |
parent | 8c0b7170956ed028472b4c1ef1d94608101da565 (diff) | |
download | glibc-49f3a758597f7904ba7e779156df8f9b61c06303.tar glibc-49f3a758597f7904ba7e779156df8f9b61c06303.tar.gz glibc-49f3a758597f7904ba7e779156df8f9b61c06303.tar.bz2 glibc-49f3a758597f7904ba7e779156df8f9b61c06303.zip |
Update.
* misc/getusershell.c: Make strings in okshells array const.
* misc/regexp.c: Add const to cast to avoid warnings.
* sysdeps/unix/sysv/linux/llseek.c: Add prototype for __llseek.
* sysdeps/unix/sysv/linux/i386/setresuid.c: Add prototype for
__setresuid.
* sysdeps/unix/sysv/linux/i386/setresgid.c: Add prototype for
setresgid.
* misc/error.c: Add prototypes for __error and __error_at_line.
* misc/mntent_r.c (__getmntent_r): Add break at end of switch
statement to avoid warning.
Diffstat (limited to 'misc/mntent_r.c')
-rw-r--r-- | misc/mntent_r.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/misc/mntent_r.c b/misc/mntent_r.c index 78b1c2dcea..5ba404d4de 100644 --- a/misc/mntent_r.c +++ b/misc/mntent_r.c @@ -1,5 +1,5 @@ /* Utilities for reading/writing fstab, mtab, etc. - Copyright (C) 1995, 1996, 1997, 1998, 1999 Free Software Foundation, Inc. + Copyright (C) 1995,1996,1997,1998,1999,2000 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 @@ -144,6 +144,7 @@ __getmntent_r (FILE *stream, struct mntent *mp, char *buffer, int bufsiz) case 1: mp->mnt_passno = 0; case 2: + break; } funlockfile (stream); |