diff options
author | Paul Janzen <pjanzen@cvs.openbsd.org> | 2002-07-01 07:51:34 +0000 |
---|---|---|
committer | Paul Janzen <pjanzen@cvs.openbsd.org> | 2002-07-01 07:51:34 +0000 |
commit | 1359acb4efed035886465c17a43060ac7e42008a (patch) | |
tree | b6dcc9629f28b5563bad00b2644488920fb6372c | |
parent | e7e0265cfd58fe5043251b6d2c20a3c17e98c612 (diff) |
Disc -> Disk for EDQUOT; now the error and log messages that appear when
quotas are exceeded are consistent. deraadt@ ok
-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 */ |