Add missing second argument to tablefull call. I *think* the added

message makes sense- somebody might want to check it.
This commit is contained in:
mjacob 2000-07-04 20:31:55 +00:00
parent 3ab02a8704
commit eb17c77233

View File

@ -1,4 +1,4 @@
/* $NetBSD: ufs_quota.c,v 1.17 2000/05/27 04:52:42 thorpej Exp $ */
/* $NetBSD: ufs_quota.c,v 1.18 2000/07/04 20:31:55 mjacob Exp $ */
/*
* Copyright (c) 1982, 1986, 1990, 1993, 1995
@ -752,7 +752,8 @@ dqget(vp, id, ump, type, dqp)
numdquot++;
} else {
if ((dq = dqfreelist.tqh_first) == NULL) {
tablefull("dquot");
tablefull("dquot",
"increase kern.maxvnodes or NPROC");
*dqp = NODQUOT;
return (EUSERS);
}