diff options
| author | Fabiano Fidêncio <fidencio@redhat.com> | 2015-09-16 22:20:30 +0200 |
|---|---|---|
| committer | Fabiano Fidêncio <fidencio@redhat.com> | 2015-10-12 13:56:21 +0200 |
| commit | 2403e940906354d52ade86d7e3884a366201b7b1 (patch) | |
| tree | 6d6fa247a13444d4fcba230beb6ce30bc6c5d441 /include | |
| parent | b10e72a2920c292f896b62253e2a029476c163d4 (diff) | |
| download | libssh-2403e940906354d52ade86d7e3884a366201b7b1.tar.gz libssh-2403e940906354d52ade86d7e3884a366201b7b1.tar.xz libssh-2403e940906354d52ade86d7e3884a366201b7b1.zip | |
cleanup: use ssh_ prefix in the bignum (non-static) functions
Having "ssh_" prefix in the functions' name will avoid possible clashes
when compiling libssh statically.
Signed-off-by: Fabiano Fidêncio <fidencio@redhat.com>
Diffstat (limited to 'include')
| -rw-r--r-- | include/libssh/bignum.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/libssh/bignum.h b/include/libssh/bignum.h index 61786c84..df77ebeb 100644 --- a/include/libssh/bignum.h +++ b/include/libssh/bignum.h @@ -24,9 +24,9 @@ #include "libssh/libcrypto.h" #include "libssh/libgcrypt.h" -bignum make_string_bn(ssh_string string); -void make_string_bn_inplace(ssh_string string, bignum bnout); -ssh_string make_bignum_string(bignum num); +bignum ssh_make_string_bn(ssh_string string); +void ssh_make_string_bn_inplace(ssh_string string, bignum bnout); +ssh_string ssh_make_bignum_string(bignum num); void ssh_print_bignum(const char *which,bignum num); |
