diff options
author | Kjell Wooding <kjell@cvs.openbsd.org> | 2002-06-11 17:43:47 +0000 |
---|---|---|
committer | Kjell Wooding <kjell@cvs.openbsd.org> | 2002-06-11 17:43:47 +0000 |
commit | 1afea0e713b86882a59761a40fa53a7147ab00d0 (patch) | |
tree | 6d88aeb1755ba0e96ab38cf5c400d838a42456a4 /sbin | |
parent | 01cb98c64cae778e23665ba439489cc173200cd6 (diff) |
Typo in err()
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/pfctl/pfctl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/pfctl/pfctl.c b/sbin/pfctl/pfctl.c index b240ddaa68c..2a45a9a659f 100644 --- a/sbin/pfctl/pfctl.c +++ b/sbin/pfctl/pfctl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pfctl.c,v 1.77 2002/06/11 08:22:15 kjell Exp $ */ +/* $OpenBSD: pfctl.c,v 1.78 2002/06/11 17:43:46 kjell Exp $ */ /* * Copyright (c) 2001 Daniel Hartmeier @@ -806,7 +806,7 @@ pfctl_gettimeout(int dev, const char *opt) } if (ioctl(dev, DIOCGETTIMEOUT, &pt)) - err(1, "DIOCSETTIMEOUT"); + err(1, "DIOCGETTIMEOUT"); if ((opts & PF_OPT_QUIET) == 0) printf("%s timeout %ds\n", pf_timeouts[i].name, pt.seconds); |