summaryrefslogtreecommitdiff
path: root/bufaux.h
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2001-12-21 14:56:54 +1100
committerDamien Miller <djm@mindrot.org>2001-12-21 14:56:54 +1100
commit5a6b4fe22583394886092aad5787b5fa8355276e (patch)
treec6366cbaf2c3ea9bd1ac8f162f9452e1e9ca0434 /bufaux.h
parentf6681a3a96ae06d62db49594ba0dcf352f817801 (diff)
- stevesk@cvs.openbsd.org 2001/12/19 17:16:13
[authfile.c bufaux.c bufaux.h buffer.c buffer.h packet.c packet.h ssh.c] change the buffer/packet interface to use void* vs. char*; ok markus@
Diffstat (limited to 'bufaux.h')
-rw-r--r--bufaux.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/bufaux.h b/bufaux.h
index d1af09881..521ddf135 100644
--- a/bufaux.h
+++ b/bufaux.h
@@ -10,7 +10,7 @@
10 * called by a name other than "ssh" or "Secure Shell". 10 * called by a name other than "ssh" or "Secure Shell".
11 */ 11 */
12 12
13/* RCSID("$OpenBSD: bufaux.h,v 1.13 2001/06/26 17:27:22 markus Exp $"); */ 13/* RCSID("$OpenBSD: bufaux.h,v 1.14 2001/12/19 17:16:13 stevesk Exp $"); */
14 14
15#ifndef BUFAUX_H 15#ifndef BUFAUX_H
16#define BUFAUX_H 16#define BUFAUX_H
@@ -36,7 +36,7 @@ int buffer_get_char(Buffer *);
36 36
37void buffer_put_char(Buffer *, int); 37void buffer_put_char(Buffer *, int);
38 38
39char *buffer_get_string(Buffer *, u_int *); 39void *buffer_get_string(Buffer *, u_int *);
40 40
41void buffer_put_string(Buffer *, const void *, u_int); 41void buffer_put_string(Buffer *, const void *, u_int);
42void buffer_put_cstring(Buffer *, const char *); 42void buffer_put_cstring(Buffer *, const char *);