Changeset 138

Show
Ignore:
Timestamp:
04/11/07 12:41:06 (21 months ago)
Author:
jwright
Message:

Fixed discrepancy between man page and identifier for madwifiold and madwifing; thanks cbc for pointing this out

Location:
trunk
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/lorcon.3

    r137 r138  
    162162Indicates the MADWIFI-ng drivers, available at 
    163163.I http://www.madwifi.org. 
    164 The strings "madwifi-ng" or "madwifing" may be used to indicate the use of this driver. 
     164The strings "madwifing" or "madwifi-ng" may be used to indicate the use of this driver. 
    165165.TP 
    166166.B INJ_MADWIFIOLD 
    167167Indicates the MADWIFI-old drivers, available at 
    168168.I http://www.madwifi.org. 
    169 The string "madwifi-old" may be used to indicate the use of this driver. 
     169The strings "madwifiold" or "madwifi-old" may be used to indicate the use of this driver. 
    170170.TP 
    171171.B INJ_RTL8180 
  • trunk/tx80211.c

    r137 r138  
    191191                return INJ_MADWIFIOLD; 
    192192 
    193         if (!strcasecmp(in_str, "madwifing")) 
     193        if (!strcasecmp(in_str, "madwifing") ||  
     194                        !strcasecmp(in_str, "madwifi-ng")) 
    194195                return INJ_MADWIFING; 
    195196 
    196         if (!strcasecmp(in_str, "madwifiold")) 
     197        if (!strcasecmp(in_str, "madwifiold") || 
     198                        !strcasecmp(in_str, "madwifi-old")) 
    197199                return INJ_MADWIFIOLD; 
    198200