Fix compilation errors
authorPaul Park <pjpark@mit.edu>
Tue, 29 Aug 1995 18:46:17 +0000 (18:46 +0000)
committerPaul Park <pjpark@mit.edu>
Tue, 29 Aug 1995 18:46:17 +0000 (18:46 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6632 dc483132-0cff-0310-8789-dd5450dbe970

src/tests/asn.1/ChangeLog
src/tests/asn.1/krb5_decode_test.c
src/tests/asn.1/trval.c

index 7fcf5509edd808195bd9c9de06c45b56f6ca5b7b..182d78cd86ea1949d6ff1f6148e2a838e4414afc 100644 (file)
@@ -1,3 +1,9 @@
+
+Tue Aug 29 14:20:52 EDT 1995   Paul Park       (pjpark@mit.edu)
+       * krb5_decode_test.c - Fix string constant.
+       * trval.c - Remove definitions of malloc and realloc.  They should come
+               in from stdlib.h.
+
 Mon Aug 28 16:35:22 1995    <tytso@rsts-11.mit.edu>
 
        * krb5_decode_test.c (main): Add tests for
index 3120b04b2a22f9290f7a175cbce98a32e828d351..f33b242d7fc6f6e876bdcc8550e739a8705da033 100644 (file)
@@ -394,8 +394,7 @@ void main()
   /* decode_pwd_sequence */
   {
     setup(krb5_alt_method,"krb5_alt_method",ktest_make_sample_alt_method);
-    decode_run("alt_method","","30 0F A0 03 02 01 2A A1 08 04 06 73 65
-63 72 65 74",decode_krb5_alt_method,ktest_equal_krb5_alt_method);
+    decode_run("alt_method","","30 0F A0 03 02 01 2A A1 08 04 06 73 65 63 72 65 74",decode_krb5_alt_method,ktest_equal_krb5_alt_method);
     ref.length = 0;
     decode_run("alt_method (no data)","","30 05 A0 03 02 01 2A",decode_krb5_alt_method,ktest_equal_krb5_alt_method);
     
index 5e85bb813e826bd92ceb1007207d840f67015835..15beb46f7cd052e3fd9306cdb0da25bf411a4826 100644 (file)
@@ -37,8 +37,6 @@
 #include <stdio.h>
 #include <ctype.h>
 
-extern char *malloc(), *realloc();
-
 #define OK 0
 #define NOTOK (-1)