diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2006-05-14 15:52:12 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2006-05-14 15:52:12 +0000 |
commit | cd6b1652e71e3a0d16208e252d9890f9f5e333f4 (patch) | |
tree | 14b802501f17943b0f18d3abae6a1665efd63714 /sbin | |
parent | 644e930909da602b7c6235e342174b1b365a7fc6 (diff) |
better english to describe interfaces without bandwidth info; ok henning
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/pfctl/pfctl_altq.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/pfctl/pfctl_altq.c b/sbin/pfctl/pfctl_altq.c index f6a62a56edb..ca402576043 100644 --- a/sbin/pfctl/pfctl_altq.c +++ b/sbin/pfctl/pfctl_altq.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pfctl_altq.c,v 1.88 2006/04/08 02:04:48 ray Exp $ */ +/* $OpenBSD: pfctl_altq.c,v 1.89 2006/05/14 15:52:11 deraadt Exp $ */ /* * Copyright (c) 2002 @@ -223,8 +223,8 @@ eval_pfaltq(struct pfctl *pf, struct pf_altq *pa, struct node_queue_bw *bw, pa->ifbandwidth = bw->bw_absolute; else if ((rate = getifspeed(pa->ifname)) == 0) { - fprintf(stderr, "cannot determine interface bandwidth " - "for %s, specify an absolute bandwidth\n", + fprintf(stderr, "interface %s does not know its bandwidth, " + "please specify an absolute bandwidth\n", pa->ifname); errors++; } else if ((pa->ifbandwidth = eval_bwspec(bw, rate)) == 0) |