commit | e0225e4d7f18f4565224f4997af537533d06a80d | [log] [tgz] |
---|---|---|
author | Paul Bakker <p.j.bakker@polarssl.org> | Thu Jun 06 12:52:24 2013 +0200 |
committer | Paul Bakker <p.j.bakker@polarssl.org> | Thu Jun 06 12:58:12 2013 +0200 |
tree | d3806e94c1d2da1d1ae51255c0f989fcaf569e64 | |
parent | eae09db9e57b7a342ea15bf57c5c1439c59a2e50 [diff] [blame] |
Fixed const correctness issues in programs and tests
diff --git a/programs/x509/crl_app.c b/programs/x509/crl_app.c index 38ac3c6..fb191a1 100644 --- a/programs/x509/crl_app.c +++ b/programs/x509/crl_app.c
@@ -43,7 +43,7 @@ */ struct options { - char *filename; /* filename of the certificate file */ + const char *filename; /* filename of the certificate file */ int debug_level; /* level of debugging */ } opt;