From 01b31f2189afbc2b00e1e744fb3c0e6792e9ffa8 Mon Sep 17 00:00:00 2001 From: Richard Jones <rjones@redhat.com> Date: Fri, 10 Sep 2010 22:51:39 +0100 Subject: [PATCH] syntax: Replace _prohibit_regexp with _sc_search_regexp. (cherry picked from commit 3d994f3d8e12356223d37c1b45ebe2eb39ef28a6) --- cfg.mk | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/cfg.mk b/cfg.mk index d45ec88..eb95dd3 100644 --- a/cfg.mk +++ b/cfg.mk @@ -100,16 +100,16 @@ sc_avoid_ctype_macros: 1>&2; exit 1; } || : sc_prohibit_virBufferAdd_with_string_literal: - @re='\<virBufferAdd *\([^,]+, *"[^"]' \ - msg='use virBufferAddLit, not virBufferAdd, with a string literal' \ - $(_prohibit_regexp) + @prohibit='\<virBufferAdd *\([^,]+, *"[^"]' \ + halt='use virBufferAddLit, not virBufferAdd, with a string literal' \ + $(_sc_search_regexp) # Not only do they fail to deal well with ipv6, but the gethostby* # functions are also not thread-safe. sc_prohibit_gethostby: - @re='\<gethostby(addr|name2?) *\(' \ - msg='use getaddrinfo, not gethostby*' \ - $(_prohibit_regexp) + @prohibit='\<gethostby(addr|name2?) *\(' \ + halt='use getaddrinfo, not gethostby*' \ + $(_sc_search_regexp) # Disallow trailing blank lines. sc_prohibit_trailing_blank_lines: -- 1.8.3.1