Make the second argument of asn1buf_insert_octet be an int, instead of
authorTheodore Tso <tytso@mit.edu>
Fri, 10 Mar 1995 20:47:39 +0000 (20:47 +0000)
committerTheodore Tso <tytso@mit.edu>
Fri, 10 Mar 1995 20:47:39 +0000 (20:47 +0000)
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

src/lib/krb5/asn.1/ChangeLog
src/lib/krb5/asn.1/asn1buf.c
src/lib/krb5/asn.1/asn1buf.h

index 6f2574c6c2d045b0f933f5f27c72c5ef4785aa50..33f07a9c529c3c99f274f1df098412005dc47ae8 100644 (file)
@@ -1,3 +1,9 @@
+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.
index d831d785edf8e4ee8ab52fd5ead6d575f34cf3f4..98aa65f85472811147bc2dfad338863a5fe0a001 100644 (file)
@@ -103,7 +103,7 @@ asn1_error_code INTERFACE asn1buf_destroy(buf)
 
 asn1_error_code INTERFACE asn1buf_insert_octet(buf, o)
      asn1buf * buf;
-     const asn1_octet o;
+     const int o;
 {
   asn1_error_code retval;
 
index cd4021210fe95458cb2db7387efcd54b98071aea..067bbf60997149629e8b6b03b78237d842ed8c97 100644 (file)
@@ -78,7 +78,7 @@ asn1_error_code INTERFACE asn1buf_destroy
 /* 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. */