Change ignore_type() arguments to (const char *, size_t)

This just changes the arguments to match the strncmp() calls in the function.
This commit is contained in:
Kevin Easton
2017-01-21 14:23:57 +11:00
parent 69296c2c5a
commit 27b2f3e939
2 changed files with 5 additions and 3 deletions

View File

@@ -57,7 +57,7 @@ int check_ignore (char *, char *, char *, long, char *);
void ignore (char *, char *, char *, char *);
void tignore (char *, char *, char *, char *);
void ignore_nickname (char *, long, int);
long ignore_type (char *, int);
long ignore_type(const char *, size_t);
int check_is_ignored(char *);
char *get_ignores_by_pattern (char *patterns, int covered);
int get_type_by_desc (char *type, int *do_mask, int *dont_mask);