* Makefile.maint (sc_prohibit_strcmp): Also prohibit strncmp.

This commit is contained in:
Jim Meyering 2008-05-15 07:12:43 +00:00
parent b87f3000aa
commit abb9a583a0
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,7 @@
Thu May 15 09:12:08 CEST 2008 Jim Meyering <meyering@redhat.com>
* Makefile.maint (sc_prohibit_strcmp): Also prohibit strncmp.
Thu May 15 15:07:49 JST 2008 Atsushi SAKAI <sakaia@jp.fujitsu.com>
* qemud/libvirtd.init.in: change libvirtd description

View File

@ -90,8 +90,9 @@ sc_prohibit_atoi_atof:
1>&2; exit 1; } || :
# Use STREQ rather than comparing strcmp == 0, or != 0.
# Similarly, use STREQLEN or STRPREFIX rather than strncmp.
sc_prohibit_strcmp:
@grep -nE '! *str''cmp *\(|\<str''cmp *\([^)]+\) *==' \
@grep -nE '! *str''n?cmp *\(|\<str''n?cmp *\([^)]+\) *==' \
$$($(VC_LIST_EXCEPT)) && \
{ echo '$(ME): use STREQ in place of the above uses of str''cmp' \
1>&2; exit 1; } || :