search for: st_match

Displaying 1 result from an estimated 1 matches for "st_match".

Did you mean: xt_match
2011 Apr 04
1
[PATCH] com32: Do not use centralized bitops header in vsscanf
...char *buffer, const char *format, va_list ap) { const char *p = format; @@ -298,7 +309,7 @@ set_integer: if (ch == '^' && !(flags & FL_INV)) { matchinv = 1; } else { - set_bit((unsigned char)ch, matchmap); + set_bit(matchmap, (unsigned char)ch); state = st_match; } break; @@ -310,18 +321,18 @@ set_integer: range_start = (unsigned char)ch; state = st_match_range; } else { - set_bit((unsigned char)ch, matchmap); + set_bit(matchmap, (unsigned char)ch); } break; case st_match_range: /* %[ match after - */ if (ch...