- 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
This commit is contained in:
parent
e577772a89
commit
2918e030fc
|
@ -24,6 +24,10 @@
|
|||
[scp.1 sftp.1]
|
||||
mention ControlPersist and KbdInteractiveAuthentication in the -o
|
||||
verbiage in these pages too (prompted by jmc@)
|
||||
- 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
|
||||
|
||||
20110909
|
||||
- (dtucker) [entropy.h] Bug #1932: remove old definition of init_rng. From
|
||||
|
|
4
misc.c
4
misc.c
|
@ -1,4 +1,4 @@
|
|||
/* $OpenBSD: misc.c,v 1.85 2011/03/29 18:54:17 stevesk Exp $ */
|
||||
/* $OpenBSD: misc.c,v 1.86 2011/09/05 05:59:08 djm Exp $ */
|
||||
/*
|
||||
* Copyright (c) 2000 Markus Friedl. All rights reserved.
|
||||
* Copyright (c) 2005,2006 Damien Miller. All rights reserved.
|
||||
|
@ -941,7 +941,7 @@ static const struct {
|
|||
{ "af11", IPTOS_DSCP_AF11 },
|
||||
{ "af12", IPTOS_DSCP_AF12 },
|
||||
{ "af13", IPTOS_DSCP_AF13 },
|
||||
{ "af14", IPTOS_DSCP_AF21 },
|
||||
{ "af21", IPTOS_DSCP_AF21 },
|
||||
{ "af22", IPTOS_DSCP_AF22 },
|
||||
{ "af23", IPTOS_DSCP_AF23 },
|
||||
{ "af31", IPTOS_DSCP_AF31 },
|
||||
|
|
Loading…
Reference in New Issue