summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorFlorian Weimer <fw@deneb.enyo.de>2007-09-02 23:42:46 +0000
committerFlorian Weimer <fw@deneb.enyo.de>2007-09-02 23:42:46 +0000
commit884b296ed0df2c977001a710fcf4a0a1dea7724c (patch)
tree145fa2b4bd7fc6a202f0f44f89f23b41e6e2655c /bin
parent008590cd9f3b2d7ead3ddacb957278d0f6dee0df (diff)
* bin/dsa2list: Fix date format
git-svn-id: svn+ssh://svn.debian.org/svn/secure-testing@6472 e39458fd-73e7-0310-bf30-c45bca0a0e42
Diffstat (limited to 'bin')
-rw-r--r--bin/dsa2list2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/dsa2list b/bin/dsa2list
index f7d78bd429..bf6a72cb98 100644
--- a/bin/dsa2list
+++ b/bin/dsa2list
@@ -77,7 +77,7 @@ def process_file(file):
match = re_date.match(line)
if match:
(m, d, y) = match.groups()
- date = "%s %s %s" % (d, m, y)
+ date = "%02d %s %s" % (int(d), m, y)
for cve in re_cve.findall(line):
cve_names[cve] = True

© 2014-2024 Faster IT GmbH | imprint | privacy policy