summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Jones <sixd@php.net>2013-08-19 17:58:42 -0700
committerChristopher Jones <sixd@php.net>2013-08-19 17:58:42 -0700
commit1a00b9bd264ba2495930be05cd0ed2b1c13b8ef8 (patch)
tree754887cf26a7802c5dbd8501e8b41d90d448b53b
parent83469477e70cba8191a4698252fc83804e88322b (diff)
downloadphp-git-1a00b9bd264ba2495930be05cd0ed2b1c13b8ef8.tar.gz
Remove compile warning:
warning: unused variable ā€˜j’ [-Wunused-variable]
-rw-r--r--ext/openssl/openssl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/openssl/openssl.c b/ext/openssl/openssl.c
index f9493c73c0..4a9fcbc9e3 100644
--- a/ext/openssl/openssl.c
+++ b/ext/openssl/openssl.c
@@ -576,7 +576,7 @@ static void add_assoc_name_entry(zval * val, char * key, X509_NAME * name, int s
{
zval **data;
zval *subitem, *subentries;
- int i, j = -1;
+ int i;
char *sname;
int nid;
X509_NAME_ENTRY * ne;