PR: 2266
Submitted By: Jonathan Gray <jsg@goblin.cx> Correct ioctl definitions.
This commit is contained in:
parent
9f51bdae00
commit
203ef9988c
1 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||
|
||||
|
|
Loading…
Reference in a new issue