summaryrefslogtreecommitdiff
path: root/bufaux.c
diff options
context:
space:
mode:
Diffstat (limited to 'bufaux.c')
-rw-r--r--bufaux.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/bufaux.c b/bufaux.c
index d953a2ad2..34a89d47a 100644
--- a/bufaux.c
+++ b/bufaux.c
@@ -15,7 +15,7 @@
15 */ 15 */
16 16
17#include "includes.h" 17#include "includes.h"
18RCSID("$Id: bufaux.c,v 1.6 1999/11/24 13:26:22 damien Exp $"); 18RCSID("$Id: bufaux.c,v 1.7 1999/11/25 00:54:58 damien Exp $");
19 19
20#include "ssh.h" 20#include "ssh.h"
21 21
@@ -54,7 +54,7 @@ buffer_put_bignum(Buffer *buffer, BIGNUM *value)
54 buffer_append(buffer, msg, 2); 54 buffer_append(buffer, msg, 2);
55 /* Store the binary data. */ 55 /* Store the binary data. */
56 buffer_append(buffer, buf, oi); 56 buffer_append(buffer, buf, oi);
57 /* Clear the temporary data. */ 57
58 memset(buf, 0, bin_size); 58 memset(buf, 0, bin_size);
59 xfree(buf); 59 xfree(buf);
60} 60}