projects
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b3e1a4c
)
Avoid silly compiler warnings about functions not being declared and an int missing.
author
Richard Levitte
<levitte@openssl.org>
Fri, 12 Nov 1999 02:10:23 +0000
(
02:10
+0000)
committer
Richard Levitte
<levitte@openssl.org>
Fri, 12 Nov 1999 02:10:23 +0000
(
02:10
+0000)
crypto/pkcs7/dec.c
patch
|
blob
|
history
crypto/pkcs7/enc.c
patch
|
blob
|
history
crypto/pkcs7/example.c
patch
|
blob
|
history
crypto/pkcs7/sign.c
patch
|
blob
|
history
crypto/pkcs7/verify.c
patch
|
blob
|
history
diff --git
a/crypto/pkcs7/dec.c
b/crypto/pkcs7/dec.c
index
c552c8f
..
accd581
100644
(file)
--- a/
crypto/pkcs7/dec.c
+++ b/
crypto/pkcs7/dec.c
@@
-57,6
+57,7
@@
*/
#include <stdio.h>
#include <stdlib.h>
+#include <string.h>
#include <openssl/bio.h>
#include <openssl/x509.h>
#include <openssl/pem.h>
diff --git
a/crypto/pkcs7/enc.c
b/crypto/pkcs7/enc.c
index
968c477
..
66a300a
100644
(file)
--- a/
crypto/pkcs7/enc.c
+++ b/
crypto/pkcs7/enc.c
@@
-56,6
+56,7
@@
* [including the GNU Public Licence.]
*/
#include <stdio.h>
+#include <string.h>
#include <openssl/bio.h>
#include <openssl/x509.h>
#include <openssl/pem.h>
diff --git
a/crypto/pkcs7/example.c
b/crypto/pkcs7/example.c
index
244abf9
..
f6656be
100644
(file)
--- a/
crypto/pkcs7/example.c
+++ b/
crypto/pkcs7/example.c
@@
-1,5
+1,6
@@
#include <stdio.h>
#include <stdlib.h>
+#include <string.h>
#include <openssl/pkcs7.h>
#include <openssl/asn1_mac.h>
@@
-68,7
+69,7
@@
int get_signed_string(PKCS7_SIGNER_INFO *si, char *buf, int len)
return(0);
}
-static signed_seq2string_nid= -1;
+static
int
signed_seq2string_nid= -1;
/* ########################################### */
int add_signed_seq2string(PKCS7_SIGNER_INFO *si, char *str1, char *str2)
{
diff --git
a/crypto/pkcs7/sign.c
b/crypto/pkcs7/sign.c
index
61dc2b1
..
367c00e
100644
(file)
--- a/
crypto/pkcs7/sign.c
+++ b/
crypto/pkcs7/sign.c
@@
-56,6
+56,7
@@
* [including the GNU Public Licence.]
*/
#include <stdio.h>
+#include <string.h>
#include <openssl/bio.h>
#include <openssl/x509.h>
#include <openssl/pem.h>
diff --git
a/crypto/pkcs7/verify.c
b/crypto/pkcs7/verify.c
index
6973fca
..
8ae903c
100644
(file)
--- a/
crypto/pkcs7/verify.c
+++ b/
crypto/pkcs7/verify.c
@@
-56,6
+56,7
@@
* [including the GNU Public Licence.]
*/
#include <stdio.h>
+#include <string.h>
#include <openssl/bio.h>
#include <openssl/asn1.h>
#include <openssl/x509.h>