diff options
author | kib <kib@FreeBSD.org> | 2013-10-31 08:22:29 +0000 |
---|---|---|
committer | kib <kib@FreeBSD.org> | 2013-10-31 08:22:29 +0000 |
commit | aca88b700c5cbfe9c27358f3e7bdebc9c3370a82 (patch) | |
tree | bfefeb5543e10dad24b9c1fd15b8ab2dd546d206 | |
parent | 5acef51277bca01e52d80991de5b5f5a9e4d11e9 (diff) | |
download | FreeBSD-src-aca88b700c5cbfe9c27358f3e7bdebc9c3370a82.zip FreeBSD-src-aca88b700c5cbfe9c27358f3e7bdebc9c3370a82.tar.gz |
The limit for the swap space is spelled 'swapsize', at least since
tcsh 6.17.00 import.
Submitted by: Stefan Neudorf
PR: bin/183480
MFC after: 1 week
-rw-r--r-- | usr.bin/limits/limits.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/limits/limits.c b/usr.bin/limits/limits.c index 8316743..3b2cf6d 100644 --- a/usr.bin/limits/limits.c +++ b/usr.bin/limits/limits.c @@ -125,7 +125,7 @@ static struct { { "limit%s sbsize %s", ";\n", 1 }, { "limit%s vmemoryuse %s", ";\n", 1024 }, { "limit%s pseudoterminals %s", ";\n", 1 }, - { "limit%s swapuse %s", ";\n", 1024 }, + { "limit%s swapsize %s", ";\n", 1024 }, { "limit%s kqueues %s", ";\n", 1 }, } }, @@ -160,7 +160,7 @@ static struct { { "limit%s sbsize %s", ";\n", 1 }, { "limit%s vmemoryuse %s", ";\n", 1024 }, { "limit%s pseudoterminals %s", ";\n", 1 }, - { "limit%s swapuse %s", ";\n", 1024 }, + { "limit%s swapsize %s", ";\n", 1024 }, { "limit%s kqueues %s", ";\n", 1 }, } }, |