Skip to content

Commit

Permalink
Update from HEAD.
Browse files Browse the repository at this point in the history
  • Loading branch information
snhenson committed Jan 21, 2007
1 parent 4a0d353 commit 4479ce9
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion ssl/d1_lib.c
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
#include <openssl/objects.h>
#include "ssl_locl.h"

const char *dtls1_version_str="DTLSv1" OPENSSL_VERSION_PTEXT;
const char dtls1_version_str[]="DTLSv1" OPENSSL_VERSION_PTEXT;

SSL3_ENC_METHOD DTLSv1_enc_data={
dtls1_enc,
Expand Down
2 changes: 1 addition & 1 deletion ssl/s2_lib.c
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
#include <openssl/evp.h>
#include <openssl/md5.h>

const char *ssl2_version_str="SSLv2" OPENSSL_VERSION_PTEXT;
const char ssl2_version_str[]="SSLv2" OPENSSL_VERSION_PTEXT;

#define SSL2_NUM_CIPHERS (sizeof(ssl2_ciphers)/sizeof(SSL_CIPHER))

Expand Down
2 changes: 1 addition & 1 deletion ssl/s3_lib.c
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@
#endif
#include <openssl/pq_compat.h>

const char *ssl3_version_str="SSLv3" OPENSSL_VERSION_PTEXT;
const char ssl3_version_str[]="SSLv3" OPENSSL_VERSION_PTEXT;

#define SSL3_NUM_CIPHERS (sizeof(ssl3_ciphers)/sizeof(SSL_CIPHER))

Expand Down
2 changes: 1 addition & 1 deletion ssl/t1_lib.c
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
#include <openssl/objects.h>
#include "ssl_locl.h"

const char *tls1_version_str="TLSv1" OPENSSL_VERSION_PTEXT;
const char tls1_version_str[]="TLSv1" OPENSSL_VERSION_PTEXT;

SSL3_ENC_METHOD TLSv1_enc_data={
tls1_enc,
Expand Down

0 comments on commit 4479ce9

Please sign in to comment.