aboutsummaryrefslogtreecommitdiffstats
path: root/tools/make-tap-reg.py
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2013-04-10 21:24:19 +0000
committerGerald Combs <gerald@wireshark.org>2013-04-10 21:24:19 +0000
commita6131151f54cffb55a514f9ae788cb631466d48b (patch)
tree3ba875797c3568925b36adbcb1fba550376f1852 /tools/make-tap-reg.py
parenta45b92e202085b07c9109fada746ab34304d459e (diff)
Use consistent "generated automatically" wording which will hopefully be
picked up by licensecheck. svn path=/trunk/; revision=48812
Diffstat (limited to 'tools/make-tap-reg.py')
-rwxr-xr-xtools/make-tap-reg.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/tools/make-tap-reg.py b/tools/make-tap-reg.py
index aaf35f9fbd..c038485ebf 100755
--- a/tools/make-tap-reg.py
+++ b/tools/make-tap-reg.py
@@ -131,8 +131,8 @@ regs['tap_reg'].sort()
reg_code = open(tmp_filename, "w")
-reg_code.write("/* Do not modify this file. */\n")
-reg_code.write("/* It is created automatically by the Makefile. */\n")
+reg_code.write("/* Do not modify this file. Changes will be overwritten. */\n")
+reg_code.write("/* Generated automatically from %s */\n" % (sys.argv[0]))
# Make the routine to register all taps
reg_code.write("""
@@ -159,5 +159,3 @@ except OSError:
# Move from tmp file to final file
os.rename(tmp_filename, final_filename)
-
-