Skip to content

Commit cf5926f

Browse files
committed
true, not TRUE
1 parent 1bb2248 commit cf5926f

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

ext/openssl/openssl.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4614,7 +4614,7 @@ PHP_FUNCTION(openssl_oid_lookup)
46144614

46154615
if (OBJ_obj2txt(buf, sizeof(buf)-1, obj, 1) > 0 && *buf != '\0') {
46164616
add_assoc_string(return_value, "oid", buf);
4617-
found = TRUE;
4617+
found = true;
46184618
}
46194619

46204620
if ((nid = OBJ_obj2nid(obj)) != NID_undef) {
@@ -4624,13 +4624,13 @@ PHP_FUNCTION(openssl_oid_lookup)
46244624
l = OBJ_nid2ln(nid);
46254625
if (l != NULL) {
46264626
add_assoc_string(return_value, "lname", (char *) l);
4627-
found = TRUE;
4627+
found = true;
46284628
}
46294629

46304630
s = OBJ_nid2sn(nid);
46314631
if (s != NULL) {
46324632
add_assoc_string(return_value, "sname", (char *) s);
4633-
found = TRUE;
4633+
found = true;
46344634
}
46354635
}
46364636
ASN1_OBJECT_free(obj);

0 commit comments

Comments
 (0)