From: Dr. Stephen Henson Date: Wed, 26 May 2010 23:23:44 +0000 (+0000) Subject: PR: 2266 X-Git-Tag: OpenSSL_1_0_0a~11 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=deb15645a8766bc593ad2bcb7b4093f06c1e710a;p=oweals%2Fopenssl.git PR: 2266 Submitted By: Jonathan Gray Correct ioctl definitions. --- diff --git a/crypto/des/rpc_des.h b/crypto/des/rpc_des.h index 4cbb4d2dcd..41328d7965 100644 --- a/crypto/des/rpc_des.h +++ b/crypto/des/rpc_des.h @@ -122,10 +122,10 @@ struct desparams { /* * Encrypt an arbitrary sized buffer */ -#define DESIOCBLOCK _IOWR(d, 6, struct desparams) +#define DESIOCBLOCK _IOWR('d', 6, struct desparams) /* * Encrypt of small amount of data, quickly */ -#define DESIOCQUICK _IOWR(d, 7, struct desparams) +#define DESIOCQUICK _IOWR('d', 7, struct desparams)