asn1_octet. ANSI C narrow types screws us again....
(The RS/6000 compiler blew out until this was fixed....)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@5107
dc483132-0cff-0310-8789-
dd5450dbe970
+Fri Mar 10 15:39:24 1995 Theodore Y. Ts'o (tytso@kenmore)
+
+ * asn1buf.c. asn1buf.h (asn1buf_insert_octet): Make the second
+ argument of asn1buf_insert_octet be an int, instead of
+ asn1_octet. ANSI C narrow types screws us again....
+
Tue Mar 7 21:40:18 1995 Keith Vetter (keithv@fusion.com)
* Makefile.in: changed library name for the PC.
asn1_error_code INTERFACE asn1buf_insert_octet(buf, o)
asn1buf * buf;
- const asn1_octet o;
+ const int o;
{
asn1_error_code retval;
/* effects Deallocates **buf, sets *buf to NULL. */
asn1_error_code INTERFACE asn1buf_insert_octet
- PROTOTYPE((asn1buf *buf, const asn1_octet o));
+ PROTOTYPE((asn1buf *buf, const int o));
/* requires *buf is allocated
effects Inserts o into the buffer *buf, expanding the buffer if
necessary. Returns ENOMEM memory is exhausted. */