Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 23724
b: refs/heads/master
c: e835a39
h: refs/heads/master
v: v3
  • Loading branch information
Sam Ravnborg committed Mar 5, 2006
1 parent 7cab4a0 commit fbf34d2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 9209aed0726c77ad13b8d83e73a3cf9f59a8c2b2
refs/heads/master: e835a39c1c1f023ef443f735b0e98b08660ae0e4
4 changes: 2 additions & 2 deletions trunk/scripts/mod/modpost.c
Original file line number Diff line number Diff line change
Expand Up @@ -776,7 +776,7 @@ static int init_section_ref_ok(const char *name)
if (strncmp(*s, name, strlen(*s)) == 0)
return 1;
for (s = namelist3; *s; s++)
if (strstr(*s, name) != NULL)
if (strstr(name, *s) != NULL)
return 1;
return 0;
}
Expand Down Expand Up @@ -842,7 +842,7 @@ static int exit_section_ref_ok(const char *name)
if (strncmp(*s, name, strlen(*s)) == 0)
return 1;
for (s = namelist3; *s; s++)
if (strstr(*s, name) != NULL)
if (strstr(name, *s) != NULL)
return 1;
return 0;
}
Expand Down

0 comments on commit fbf34d2

Please sign in to comment.