diff options
author | 2003-02-15 18:55:50 +0000 | |
---|---|---|
committer | 2003-02-15 18:55:50 +0000 | |
commit | 0fc7be34bd904af8ebcb197b048eb9efc2b951f0 (patch) | |
tree | 6fc82453873a9abeccbe529465fc03616cf31f68 | |
parent | Don't leak httpd child PIDs via multipart MIME boundary separators. (diff) | |
download | wireguard-openbsd-0fc7be34bd904af8ebcb197b048eb9efc2b951f0.tar.xz wireguard-openbsd-0fc7be34bd904af8ebcb197b048eb9efc2b951f0.zip |
CRD_F_COMP isn't so special that it needs 4 bits for a binary flag
-rw-r--r-- | sys/crypto/cryptodev.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/crypto/cryptodev.h b/sys/crypto/cryptodev.h index 0fa8a653b2f..5e6dd370f10 100644 --- a/sys/crypto/cryptodev.h +++ b/sys/crypto/cryptodev.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cryptodev.h,v 1.35 2002/11/21 19:34:25 jason Exp $ */ +/* $OpenBSD: cryptodev.h,v 1.36 2003/02/15 18:55:50 jason Exp $ */ /* * The author of this code is Angelos D. Keromytis (angelos@cis.upenn.edu) @@ -125,7 +125,7 @@ struct cryptodesc { place, so don't copy. */ #define CRD_F_IV_EXPLICIT 0x04 /* IV explicitly provided */ #define CRD_F_DSA_SHA_NEEDED 0x08 /* Compute SHA-1 of buffer for DSA */ -#define CRD_F_COMP 0x0f /* Set when doing compression */ +#define CRD_F_COMP 0x10 /* Set when doing compression */ struct cryptoini CRD_INI; /* Initialization/context data */ #define crd_iv CRD_INI.cri_iv |