Commit 68b87684 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp Committed by Lasse Karstensen

Restrict charset used for file_id.

Suggested by:	scoof
parent f1ca0b62
......@@ -239,7 +239,7 @@ class Vmod(object):
#
fo.write("\t.file_id = \"")
for i in range(32):
fo.write("%c" % random.randint(0x23,0x5b))
fo.write("%c" % random.randint(0x40,0x5a))
fo.write("\",\n")
fo.write("};\n")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment