diff --git a/suse-binarieschecks.diff b/suse-binarieschecks.diff index 9e42485..dc6e965 100644 --- a/suse-binarieschecks.diff +++ b/suse-binarieschecks.diff @@ -45,11 +45,11 @@ Index: rpmlint-rpmlint-1.11/BinariesCheck.py self.non_pic = False continue -+ if BinaryInfo.debuginfo_regex.search(l): ++ if BinaryInfo.debuginfo_regex.search(line): + self.debuginfo = True + continue + -+ if BinaryInfo.symtab_regex.search(l): ++ if BinaryInfo.symtab_regex.search(line): + self.symtab = True + continue + @@ -60,7 +60,7 @@ Index: rpmlint-rpmlint-1.11/BinariesCheck.py if BinaryInfo.chroot_call_regex.search(line): self.chroot = True -+ if BinaryInfo.gethostbyname_call_regex.search(l): ++ if BinaryInfo.gethostbyname_call_regex.search(line): + self.calls_gethostbyname = True + if BinaryInfo.forbidden_functions: