commit | 8fbb5a32c60408e2197e12f614d0b48111f341b7 | [log] [tgz] |
---|---|---|
author | Manuel Pégourié-Gonnard <mpg2@elzevir.fr> | Mon Aug 31 12:38:12 2015 +0200 |
committer | Manuel Pégourié-Gonnard <mpg2@elzevir.fr> | Mon Aug 31 12:38:12 2015 +0200 |
tree | 0be104f7eea56678bdf32319c9d536f8d67bff97 | |
parent | c728f9486bcb0b206259d06fbb4dd01036923e03 [diff] [blame] |
Fix snprintf usage again Sigh, switching between branches is error-prone
diff --git a/programs/pkey/rsa_verify.c b/programs/pkey/rsa_verify.c index 325ae6a..4011df6 100644 --- a/programs/pkey/rsa_verify.c +++ b/programs/pkey/rsa_verify.c
@@ -105,7 +105,7 @@ * Extract the RSA signature from the text file */ ret = 1; - snprintf( filename, sizeof( filename ), "%s.sig", argv[1] ); + polarssl_snprintf( filename, sizeof( filename ), "%s.sig", argv[1] ); if( ( f = fopen( filename, "rb" ) ) == NULL ) {