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_sign.c b/programs/pkey/rsa_sign.c index 7bd0fad..c9bdd3a 100644 --- a/programs/pkey/rsa_sign.c +++ b/programs/pkey/rsa_sign.c
@@ -141,7 +141,7 @@ /* * Write the signature into <filename>.sig */ - snprintf( filename, sizeof( filename ), "%s.sig", argv[1] ); + polarssl_snprintf( filename, sizeof( filename ), "%s.sig", argv[1] ); if( ( f = fopen( filename, "wb+" ) ) == NULL ) {