diff options
| author | beck <> | 2014-04-15 16:21:04 +0000 |
|---|---|---|
| committer | beck <> | 2014-04-15 16:21:04 +0000 |
| commit | 815e93e74514b0f699488f372d491cf84236cd99 (patch) | |
| tree | 8c2058c07d3cdac3caf00950e53159c1c251f257 /src/lib/libcrypto/engine | |
| parent | 6faa9226dd4494c01448085044adc07001ba4ca0 (diff) | |
| download | openbsd-815e93e74514b0f699488f372d491cf84236cd99.tar.gz openbsd-815e93e74514b0f699488f372d491cf84236cd99.tar.bz2 openbsd-815e93e74514b0f699488f372d491cf84236cd99.zip | |
Part 1 of eliminating BIO_snprintf(). This fixes mechanical conversions
where the return value is ignored changing to (void) snprintf.
ok deraadt@
Diffstat (limited to 'src/lib/libcrypto/engine')
| -rw-r--r-- | src/lib/libcrypto/engine/eng_padlock.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/libcrypto/engine/eng_padlock.c b/src/lib/libcrypto/engine/eng_padlock.c index 9f7a85a8da..d1fc8d9315 100644 --- a/src/lib/libcrypto/engine/eng_padlock.c +++ b/src/lib/libcrypto/engine/eng_padlock.c | |||
| @@ -178,7 +178,7 @@ padlock_bind_helper(ENGINE *e) | |||
| 178 | #endif | 178 | #endif |
| 179 | 179 | ||
| 180 | /* Generate a nice engine name with available features */ | 180 | /* Generate a nice engine name with available features */ |
| 181 | BIO_snprintf(padlock_name, sizeof(padlock_name), | 181 | (void) snprintf(padlock_name, sizeof(padlock_name), |
| 182 | "VIA PadLock (%s, %s)", | 182 | "VIA PadLock (%s, %s)", |
| 183 | padlock_use_rng ? "RNG" : "no-RNG", | 183 | padlock_use_rng ? "RNG" : "no-RNG", |
| 184 | padlock_use_ace ? "ACE" : "no-ACE"); | 184 | padlock_use_ace ? "ACE" : "no-ACE"); |
