diff options
author | 2002-07-01 07:51:33 +0000 | |
---|---|---|
committer | 2002-07-01 07:51:33 +0000 | |
commit | bf1d97217b408f355fed1213d17a8846e798f59b (patch) | |
tree | 3281d67a62a17554eeea087abc465f97b4445258 /lib/libc/gen/errlist.c | |
parent | Fix strnvis(): don't truncate unnecessarily, set the return value correctly (diff) | |
download | wireguard-openbsd-bf1d97217b408f355fed1213d17a8846e798f59b.tar.xz wireguard-openbsd-bf1d97217b408f355fed1213d17a8846e798f59b.zip |
Disc -> Disk for EDQUOT; now the error and log messages that appear when
quotas are exceeded are consistent. deraadt@ ok
Diffstat (limited to 'lib/libc/gen/errlist.c')
-rw-r--r-- | lib/libc/gen/errlist.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/gen/errlist.c b/lib/libc/gen/errlist.c index 31867b1b33a..ab81dbc10d3 100644 --- a/lib/libc/gen/errlist.c +++ b/lib/libc/gen/errlist.c @@ -32,7 +32,7 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: errlist.c,v 1.5 2002/05/01 13:36:18 drahn Exp $"; +static char *rcsid = "$OpenBSD: errlist.c,v 1.6 2002/07/01 07:51:33 pjanzen Exp $"; #endif /* LIBC_SCCS and not lint */ #ifdef lint @@ -125,7 +125,7 @@ const char *const /* quotas & mush */ "Too many processes", /* 67 - EPROCLIM */ "Too many users", /* 68 - EUSERS */ - "Disc quota exceeded", /* 69 - EDQUOT */ + "Disk quota exceeded", /* 69 - EDQUOT */ /* Network File System */ "Stale NFS file handle", /* 70 - ESTALE */ |