Avoid some warnings, and run "make update".
authorBodo Möller <bodo@openssl.org>
Fri, 14 Jan 2000 17:28:48 +0000 (17:28 +0000)
committerBodo Möller <bodo@openssl.org>
Fri, 14 Jan 2000 17:28:48 +0000 (17:28 +0000)
crypto/err/Makefile.ssl
crypto/err/err_all.c
crypto/mem_dbg.c
crypto/pkcs7/pk7_mime.c
crypto/rand/Makefile.ssl
crypto/x509/Makefile.ssl
util/libeay.num

index e0f5128f438c520d3f74dd602c99576ed1878d0e..cf54cdd44569e83ef75d55f4a1ed248d7231b442 100644 (file)
@@ -96,12 +96,13 @@ err_all.o: ../../include/openssl/md2.h ../../include/openssl/md5.h
 err_all.o: ../../include/openssl/mdc2.h ../../include/openssl/objects.h
 err_all.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
 err_all.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs12.h
-err_all.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h
-err_all.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h
-err_all.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h
-err_all.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
-err_all.o: ../../include/openssl/stack.h ../../include/openssl/x509.h
-err_all.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
+err_all.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
+err_all.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h
+err_all.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h
+err_all.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
+err_all.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
+err_all.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
+err_all.o: ../../include/openssl/x509v3.h
 err_prn.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
 err_prn.o: ../../include/openssl/crypto.h ../../include/openssl/e_os.h
 err_prn.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
index a6f6447a73744a92b0ab0b15cc635ba68adb9b09..10c463b389bf938cfd59b58143ee53758ba882fd 100644 (file)
@@ -80,6 +80,7 @@
 #include <openssl/x509v3.h>
 #include <openssl/conf.h>
 #include <openssl/pkcs12.h>
+#include <openssl/rand.h>
 #include <openssl/err.h>
 
 void ERR_load_crypto_strings(void)
index 7f9cc0ec74c8dd86d84c1453bd534920114f8f3c..657530750d96ae9c55c365b2ec90fd497f3aeaeb 100644 (file)
@@ -592,9 +592,11 @@ static void print_leak(MEM *m, MEM_LEAK *l)
 
        amip=m->app_info;
        ami_cnt=0;
-       if (amip)
-               ti=amip->thread;
-       while(amip && amip->thread == ti)
+       if (!amip)
+               return;
+       ti=amip->thread;
+       
+       do
                {
                int buf_len;
                int info_len;
@@ -622,6 +624,8 @@ static void print_leak(MEM *m, MEM_LEAK *l)
 
                amip = amip->next;
                }
+       while(amip && amip->thread == ti);
+               
 #ifdef LEVITTE_DEBUG
        if (amip)
                {
index f346259b922da90f99d7fe293f797c615b4bd259..4282f69d0d7c085a42e0b06166f1ed64c5ebe7df 100644 (file)
@@ -416,7 +416,7 @@ static STACK *mime_parse_hdr(BIO *bio)
        headers = sk_new(mime_hdr_cmp);
        while ((len = BIO_gets(bio, linebuf, MAX_SMLEN)) > 0) {
        /* If whitespace at line start then continuation line */
-       if(mhdr && isspace(linebuf[0])) state = MIME_NAME;
+       if(mhdr && isspace((unsigned char)linebuf[0])) state = MIME_NAME;
        else state = MIME_START;
        ntmp = NULL;
        /* Go through all characters */
@@ -520,7 +520,7 @@ static char *strip_start(char *name)
                        /* Else null string */
                        return NULL;
                }
-               if(!isspace(c)) return p;
+               if(!isspace((unsigned char)c)) return p;
        }
        return NULL;
 }
@@ -538,7 +538,7 @@ static char *strip_end(char *name)
                        *p = 0;
                        return name;
                }
-               if(isspace(c)) *p = 0;  
+               if(isspace((unsigned char)c)) *p = 0;   
                else return name;
        }
        return NULL;
index 41190f5f46bc85950b37a27daf6585c49650e404..7ce3084e0754854be5d82a02ab0b58243cc2c16f 100644 (file)
@@ -79,9 +79,11 @@ clean:
 # DO NOT DELETE THIS LINE -- make depend depends on it.
 
 md_rand.o: ../../include/openssl/crypto.h ../../include/openssl/e_os.h
-md_rand.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
-md_rand.o: ../../include/openssl/opensslv.h ../../include/openssl/rand.h
-md_rand.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
+md_rand.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
+md_rand.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
+md_rand.o: ../../include/openssl/rand.h ../../include/openssl/sha.h
+md_rand.o: ../../include/openssl/stack.h
+rand_err.o: ../../include/openssl/err.h ../../include/openssl/rand.h
 rand_lib.o: ../../include/openssl/rand.h
 randfile.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
 randfile.o: ../../include/openssl/opensslconf.h ../../include/openssl/rand.h
index a569c80919c9ed041adca310f7e323db5a8ea6f0..c5f68a9e192c48e35f35e840163c50f7a15c109d 100644 (file)
@@ -123,6 +123,24 @@ by_file.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h
 by_file.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
 by_file.o: ../../include/openssl/stack.h ../../include/openssl/x509.h
 by_file.o: ../../include/openssl/x509_vfy.h ../cryptlib.h
+x509_att.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
+x509_att.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h
+x509_att.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h
+x509_att.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
+x509_att.o: ../../include/openssl/des.h ../../include/openssl/dh.h
+x509_att.o: ../../include/openssl/dsa.h ../../include/openssl/e_os.h
+x509_att.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
+x509_att.o: ../../include/openssl/evp.h ../../include/openssl/idea.h
+x509_att.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h
+x509_att.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h
+x509_att.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
+x509_att.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h
+x509_att.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h
+x509_att.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h
+x509_att.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
+x509_att.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
+x509_att.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
+x509_att.o: ../../include/openssl/x509v3.h ../cryptlib.h
 x509_cmp.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
 x509_cmp.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h
 x509_cmp.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h
index 818187286c57b782ff5cafe1efef5111c5bdaa8c..ac6c4d12d8c6baa50ea93b6a52f2bd91ead7029a 100755 (executable)
@@ -2173,3 +2173,8 @@ X509_radd_attr                          2197
 X509_ATTRIBUTE_iget_data                2198
 X509_delete_attr                        2199
 X509_get_attr_by_OBJ                    2200
+RAND_add                                2201
+BIO_number_written                      2202
+BIO_number_read                         2203
+X509_STORE_CTX_rget_chain               2204
+ERR_load_RAND_strings                   2205