summaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
authorUlf Möller <ulf@openssl.org>1999-07-22 16:10:31 +0000
committerUlf Möller <ulf@openssl.org>1999-07-22 16:10:31 +0000
commit49b8142262247dcf6e0308e26cdb2d7f1bbafcb8 (patch)
tree8144e1c2ba653eecc652b94776783c6ee59db756 /crypto
parentf0e8ae723cf8f86a91bdc5be8a6a5b956309729f (diff)
Make the perl module compile and eliminate some of the warnings.
Still doesn't work (the destructor on BIO and SSL is called immediately after creating the object. Why that??)
Diffstat (limited to 'crypto')
-rw-r--r--crypto/.cvsignore2
-rw-r--r--crypto/ex_data.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/crypto/.cvsignore b/crypto/.cvsignore
index ce36d588f9..6b86a0a8dc 100644
--- a/crypto/.cvsignore
+++ b/crypto/.cvsignore
@@ -1,4 +1,4 @@
lib
-date.h
+buildinf.h
opensslconf.h
Makefile.save
diff --git a/crypto/ex_data.c b/crypto/ex_data.c
index 741bb570f0..176574766b 100644
--- a/crypto/ex_data.c
+++ b/crypto/ex_data.c
@@ -141,7 +141,7 @@ char *CRYPTO_get_ex_data(CRYPTO_EX_DATA *ad, int idx)
return(sk_value(ad->sk,idx));
}
-/* The callback is called with the 'object', which is the origional data object
+/* The callback is called with the 'object', which is the original data object
* being duplicated, a pointer to the
* 'new' object to be inserted, the index, and the argi/argp
*/