diff options
author | Fabiano Fidêncio <fidencio@redhat.com> | 2015-09-17 13:47:00 +0200 |
---|---|---|
committer | Fabiano Fidêncio <fidencio@redhat.com> | 2015-10-12 13:56:21 +0200 |
commit | 62fe4e426f08e0ba4c40c6b379e792883a4e6ae3 (patch) | |
tree | 50675d437198b9956e7f90c11ad26a089fbe9c46 /src | |
parent | 7703f9dc847a5906e852c5c3599f6c2ebf062968 (diff) | |
download | libssh-62fe4e426f08e0ba4c40c6b379e792883a4e6ae3.tar.gz libssh-62fe4e426f08e0ba4c40c6b379e792883a4e6ae3.tar.xz libssh-62fe4e426f08e0ba4c40c6b379e792883a4e6ae3.zip |
cleanup: use ssh_ prefix in the gcrypt missing 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 'src')
-rw-r--r-- | src/gcrypt_missing.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gcrypt_missing.c b/src/gcrypt_missing.c index b21e5f30..e07843b8 100644 --- a/src/gcrypt_missing.c +++ b/src/gcrypt_missing.c @@ -27,7 +27,7 @@ #include "libssh/libgcrypt.h" #ifdef HAVE_LIBGCRYPT -int my_gcry_dec2bn(bignum *bn, const char *data) { +int ssh_gcry_dec2bn(bignum *bn, const char *data) { int count; *bn = bignum_new(); @@ -43,7 +43,7 @@ int my_gcry_dec2bn(bignum *bn, const char *data) { return count; } -char *my_gcry_bn2dec(bignum bn) { +char *ssh_gcry_bn2dec(bignum bn) { bignum bndup, num, ten; char *ret; int count, count2; |