From 2403e940906354d52ade86d7e3884a366201b7b1 Mon Sep 17 00:00:00 2001 From: Fabiano FidĂȘncio Date: Wed, 16 Sep 2015 22:20:30 +0200 Subject: cleanup: use ssh_ prefix in the bignum (non-static) functions MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Having "ssh_" prefix in the functions' name will avoid possible clashes when compiling libssh statically. Signed-off-by: Fabiano FidĂȘncio --- src/buffer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/buffer.c') 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; -- cgit