Correct the description of sbsize; it is parsed in bytes not kbytes.
This commit is contained in:
parent
69a2205a22
commit
778dabc229
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: miscbltin.c,v 1.33 2004/04/17 15:41:29 christos Exp $ */
|
||||
/* $NetBSD: miscbltin.c,v 1.34 2004/04/19 01:36:32 lukem Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1991, 1993
|
||||
|
@ -37,7 +37,7 @@
|
|||
#if 0
|
||||
static char sccsid[] = "@(#)miscbltin.c 8.4 (Berkeley) 5/4/95";
|
||||
#else
|
||||
__RCSID("$NetBSD: miscbltin.c,v 1.33 2004/04/17 15:41:29 christos Exp $");
|
||||
__RCSID("$NetBSD: miscbltin.c,v 1.34 2004/04/19 01:36:32 lukem Exp $");
|
||||
#endif
|
||||
#endif /* not lint */
|
||||
|
||||
|
@ -291,7 +291,7 @@ static const struct limits limits[] = {
|
|||
{ "swap(kbytes)", RLIMIT_SWAP, 1024, 'w' },
|
||||
#endif
|
||||
#ifdef RLIMIT_SBSIZE
|
||||
{ "sbsize(kbytes)", RLIMIT_SBSIZE, 1, 'b' },
|
||||
{ "sbsize(bytes)", RLIMIT_SBSIZE, 1, 'b' },
|
||||
#endif
|
||||
{ (char *) 0, 0, 0, '\0' }
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue