diff options
| author | Jean Tourrilhes <jt@hpl.hp.com> | 2002-05-10 20:39:50 -0400 |
|---|---|---|
| committer | Jeff Garzik <jgarzik@mandrakesoft.com> | 2002-05-10 20:39:50 -0400 |
| commit | 7883b2f77d780e71a8778081f6d4e2caa3abbfc5 (patch) | |
| tree | a3563a5012f6c230e2014282e0baf3a49275bc62 /include | |
| parent | b446946d5e70c33d17cf9ecf50211a8edbc701ef (diff) | |
Fix four similar off-by-one errors in wireless net drvr core.
Diffstat (limited to 'include')
| -rw-r--r-- | include/net/iw_handler.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/net/iw_handler.h b/include/net/iw_handler.h index 4f27f0364c8d..192dea1f9d08 100644 --- a/include/net/iw_handler.h +++ b/include/net/iw_handler.h @@ -245,7 +245,8 @@ /* Wrapper level flags */ #define IW_DESCR_FLAG_DUMP 0x0001 /* Not part of the dump command */ #define IW_DESCR_FLAG_EVENT 0x0002 /* Generate an event on SET */ -#define IW_DESCR_FLAG_RESTRICT 0x0004 /* GET request is ROOT only */ +#define IW_DESCR_FLAG_RESTRICT 0x0004 /* GET : request is ROOT only */ + /* SET : Omit payload from generated iwevent */ /* Driver level flags */ #define IW_DESCR_FLAG_WAIT 0x0100 /* Wait for driver event */ |
