diff options
author | miod <> | 2014-07-12 16:03:37 +0000 |
---|---|---|
committer | miod <> | 2014-07-12 16:03:37 +0000 |
commit | 1ae7466a2fdd60df6484d8d132d70a044fd58c92 (patch) | |
tree | b756e0522f06b8c8ef257885370d0ada8f818fa8 /src/lib/libcrypto/dsa/dsa.h | |
parent | 3c4c98fca81949fb441815860d40ad66626df65d (diff) | |
download | openbsd-1ae7466a2fdd60df6484d8d132d70a044fd58c92.tar.gz openbsd-1ae7466a2fdd60df6484d8d132d70a044fd58c92.tar.bz2 openbsd-1ae7466a2fdd60df6484d8d132d70a044fd58c92.zip |
if (x) FOO_free(x) -> FOO_free(x).
Improves readability, keeps the code smaller so that it is warmer in your
cache.
review & ok deraadt@
Diffstat (limited to '')
-rw-r--r-- | src/lib/libcrypto/dsa/dsa.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/dsa/dsa.h b/src/lib/libcrypto/dsa/dsa.h index c1264ac325..bd7b26070d 100644 --- a/src/lib/libcrypto/dsa/dsa.h +++ b/src/lib/libcrypto/dsa/dsa.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: dsa.h,v 1.17 2014/06/12 15:49:28 deraadt Exp $ */ | 1 | /* $OpenBSD: dsa.h,v 1.18 2014/07/12 16:03:37 miod Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -206,7 +206,7 @@ int DSA_set_method(DSA *dsa, const DSA_METHOD *); | |||
206 | 206 | ||
207 | DSA * DSA_new(void); | 207 | DSA * DSA_new(void); |
208 | DSA * DSA_new_method(ENGINE *engine); | 208 | DSA * DSA_new_method(ENGINE *engine); |
209 | void DSA_free (DSA *r); | 209 | void DSA_free(DSA *r); |
210 | /* "up" the DSA object's reference count */ | 210 | /* "up" the DSA object's reference count */ |
211 | int DSA_up_ref(DSA *r); | 211 | int DSA_up_ref(DSA *r); |
212 | int DSA_size(const DSA *); | 212 | int DSA_size(const DSA *); |