aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorJeff Morriss <jeff.morriss.ws@gmail.com>2014-02-13 17:39:19 -0500
committerGuy Harris <guy@alum.mit.edu>2014-02-13 23:23:02 +0000
commitd219887b44ff09010af3fa96302fe1eed87797c5 (patch)
treeee38b8b50ffdd8967c1f24dfa1732b211e61bddf /tools
parent58fe488822ef7e59b1f7e85f04d4a19876c39769 (diff)
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>
Diffstat (limited to 'tools')
-rwxr-xr-xtools/checkAPIs.pl7
1 files changed, 0 insertions, 7 deletions
diff --git a/tools/checkAPIs.pl b/tools/checkAPIs.pl
index 749f5972c4..2ab20c3e37 100755
--- a/tools/checkAPIs.pl
+++ b/tools/checkAPIs.pl
@@ -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;