diff options
author | Jeff Law <law@redhat.com> | 2013-05-23 13:28:00 -0600 |
---|---|---|
committer | Jeff Law <law@redhat.com> | 2013-05-30 05:51:22 -0600 |
commit | 96945714ec61951cc748da2b4b8a80cf02127ee9 (patch) | |
tree | 1dc9bd4671aeb22739ad1b8c11d3502c1aff4476 /sysdeps/gnu | |
parent | b937534868c8d7aec3b6d645bf5fd657bbfccd42 (diff) | |
download | glibc-96945714ec61951cc748da2b4b8a80cf02127ee9.tar.gz |
[BZ #14256]
* manual/errno.texi (ESTALE): Update to account for more than
just NFS file systems.
* sysdeps/gnu/errlist.c: Regenerated.
Diffstat (limited to 'sysdeps/gnu')
-rw-r--r-- | sysdeps/gnu/errlist.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/sysdeps/gnu/errlist.c b/sysdeps/gnu/errlist.c index e3d2faf56e..bbd45f2836 100644 --- a/sysdeps/gnu/errlist.c +++ b/sysdeps/gnu/errlist.c @@ -780,11 +780,12 @@ TRANS The user's disk quota was exceeded. */ #endif #ifdef ESTALE /* -TRANS Stale NFS file handle. This indicates an internal confusion in the NFS -TRANS system which is due to file system rearrangements on the server host. -TRANS Repairing this condition usually requires unmounting and remounting -TRANS the NFS file system on the local host. */ - [ERR_REMAP (ESTALE)] = N_("Stale NFS file handle"), +TRANS Stale file handle. This indicates an internal confusion in the +TRANS file system which is due to file system rearrangements on the server host +TRANS for NFS file systems or corruption in other file systems. +TRANS Repairing this condition usually requires unmounting, possibly repairing +TRANS and remounting the file system. */ + [ERR_REMAP (ESTALE)] = N_("Stale file handle"), # if ESTALE > ERR_MAX # undef ERR_MAX # define ERR_MAX ESTALE |