diff options
| author | Gary Ching-Pang Lin <glin@suse.com> | 2014-08-19 14:20:23 -0400 |
|---|---|---|
| committer | Peter Jones <pjones@redhat.com> | 2014-08-19 14:20:23 -0400 |
| commit | 5cbe75a3facfe8256454595ca3abbff7ad6076b0 (patch) | |
| tree | c7028a2687dcc1ce83f2b3bfdf25d0a3f9af7aa1 /Cryptlib/OpenSSL/crypto/ocsp/ocsp_lib.c | |
| parent | 221faac51bc430c0bac3b26ff65b75ab6f24da58 (diff) | |
| download | efi-boot-shim-5cbe75a3facfe8256454595ca3abbff7ad6076b0.tar.gz efi-boot-shim-5cbe75a3facfe8256454595ca3abbff7ad6076b0.zip | |
Update openssl to 0.9.8zb
Also update to Tiano Cryptlib r15802 and remove the execute mode
bits from the C and header files of openssl
Diffstat (limited to 'Cryptlib/OpenSSL/crypto/ocsp/ocsp_lib.c')
| -rw-r--r--[-rwxr-xr-x] | Cryptlib/OpenSSL/crypto/ocsp/ocsp_lib.c | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/Cryptlib/OpenSSL/crypto/ocsp/ocsp_lib.c b/Cryptlib/OpenSSL/crypto/ocsp/ocsp_lib.c index 441ccb7a..5883b4e0 100755..100644 --- a/Cryptlib/OpenSSL/crypto/ocsp/ocsp_lib.c +++ b/Cryptlib/OpenSSL/crypto/ocsp/ocsp_lib.c @@ -220,8 +220,19 @@ int OCSP_parse_url(char *url, char **phost, char **pport, char **ppath, int *pss if (!*ppath) goto mem_err; + p = host; + if(host[0] == '[') + { + /* ipv6 literal */ + host++; + p = strchr(host, ']'); + if(!p) goto parse_err; + *p = '\0'; + p++; + } + /* Look for optional ':' for port number */ - if ((p = strchr(host, ':'))) + if ((p = strchr(p, ':'))) { *p = 0; port = p + 1; |
