From: wessels <> Date: Fri, 31 Oct 1997 05:45:52 +0000 (+0000) Subject: fix to allow comments in globals.h file X-Git-Tag: SQUID_3_0_PRE1~4606 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=560866b3ce776b80dffa2cc64f2c4cf10932cb8b;p=thirdparty%2Fsquid.git fix to allow comments in globals.h file --- diff --git a/src/mk-globals-c.pl b/src/mk-globals-c.pl index bb08dddb8c..e2939bc8d2 100755 --- a/src/mk-globals-c.pl +++ b/src/mk-globals-c.pl @@ -5,6 +5,10 @@ while (<>) { print; next; } + if (/^.\*/) { + print; + next; + } next unless (/./); next if (/\[\];$/); die unless (/^extern\s+([^;]+);(.*)$/);