summaryrefslogtreecommitdiff
path: root/misc.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2011-09-22 21:34:35 +1000
committerDamien Miller <djm@mindrot.org>2011-09-22 21:34:35 +1000
commit2918e030fc0afb9064d6b884c4f80393b552d2a5 (patch)
tree667d46344414912ab5b2ae883f9c75dbebd39f96 /misc.c
parente577772a89ba6ba37b3f9bbfebcc037c3711c138 (diff)
- djm@cvs.openbsd.org 2011/09/05 05:59:08
[misc.c] fix typo in IPQoS parsing: there is no "AF14" class, but there is an "AF21" class. Spotted by giesen AT snickers.org; ok markus stevesk
Diffstat (limited to 'misc.c')
-rw-r--r--misc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/misc.c b/misc.c
index 5f63090d9..a7a23dcc6 100644
--- a/misc.c
+++ b/misc.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: misc.c,v 1.85 2011/03/29 18:54:17 stevesk Exp $ */ 1/* $OpenBSD: misc.c,v 1.86 2011/09/05 05:59:08 djm Exp $ */
2/* 2/*
3 * Copyright (c) 2000 Markus Friedl. All rights reserved. 3 * Copyright (c) 2000 Markus Friedl. All rights reserved.
4 * Copyright (c) 2005,2006 Damien Miller. All rights reserved. 4 * Copyright (c) 2005,2006 Damien Miller. All rights reserved.
@@ -941,7 +941,7 @@ static const struct {
941 { "af11", IPTOS_DSCP_AF11 }, 941 { "af11", IPTOS_DSCP_AF11 },
942 { "af12", IPTOS_DSCP_AF12 }, 942 { "af12", IPTOS_DSCP_AF12 },
943 { "af13", IPTOS_DSCP_AF13 }, 943 { "af13", IPTOS_DSCP_AF13 },
944 { "af14", IPTOS_DSCP_AF21 }, 944 { "af21", IPTOS_DSCP_AF21 },
945 { "af22", IPTOS_DSCP_AF22 }, 945 { "af22", IPTOS_DSCP_AF22 },
946 { "af23", IPTOS_DSCP_AF23 }, 946 { "af23", IPTOS_DSCP_AF23 },
947 { "af31", IPTOS_DSCP_AF31 }, 947 { "af31", IPTOS_DSCP_AF31 },