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 /src/buffer.c | |
| 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 'src/buffer.c')
| -rw-r--r-- | src/buffer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buffer.c b/src/buffer.c index 0bffdfda..0a33ae30 100644 --- a/src/buffer.c +++ b/src/buffer.c @@ -767,7 +767,7 @@ int ssh_buffer_pack_va(struct ssh_buffer_struct *buffer, break; case 'B': b = va_arg(ap, bignum); - o.string = make_bignum_string(b); + o.string = ssh_make_bignum_string(b); if(o.string == NULL){ rc = SSH_ERROR; break; |
