Don't complain if files don't have $Id$ in them.

$Id$ is pretty useless in git so don't enforce it in our source code.

Change-Id: Ie8b1b9627aabbca72c9c1dd93a9a76901e6967eb
Reviewed-on: https://code.wireshark.org/review/203
Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com>
Reviewed-by: Guy Harris <guy@alum.mit.edu>
This commit is contained in:
Jeff Morriss 2014-02-13 17:39:19 -05:00 committed by Guy Harris
parent 58fe488822
commit d219887b44
1 changed files with 0 additions and 7 deletions

View File

@ -12,8 +12,6 @@
# [--nocheck-value-string-array-null-termination]
# [--nocheck-addtext] [--nocheck-hf] [--debug] file1 file2 ...
#
# $Id$
#
# Wireshark - Network traffic analyzer
# By Gerald Combs <gerald@wireshark.org>
# Copyright 1998 Gerald Combs
@ -1984,11 +1982,6 @@ while ($_ = $ARGV[0])
$errorCount++;
}
if (! ($fileContents =~ m{ \$Id .* \$ }xo))
{
print STDERR "Warning: ".$filename." does not have an SVN Id tag.\n";
}
# Remove all the C-comments
$fileContents =~ s{ $CComment } []xog;