summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorjvoisin2020-07-04 22:01:53 +0200
committerjvoisin2020-07-04 22:01:53 +0200
commitb849f33ba6dbfe040927b920846742d517a67bce (patch)
tree030a054cd2baecd7c8136a93b1c379c1df6c47b8 /src
parent4e896399011737e5836f5091ada66a4191902591 (diff)
Fix a small typo
Diffstat (limited to 'src')
-rw-r--r--src/sp_utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sp_utils.c b/src/sp_utils.c
index e752d24..ed5123e 100644
--- a/src/sp_utils.c
+++ b/src/sp_utils.c
@@ -419,7 +419,7 @@ bool check_is_in_eval_whitelist(const zend_string* const function_name) {
419 } 419 }
420 420
421 /* yes, we could use a HashTable instead, but since the list is pretty 421 /* yes, we could use a HashTable instead, but since the list is pretty
422 * small, it doesn't maka a difference in practise. */ 422 * small, it doesn't make a difference in practise. */
423 while (it && it->data) { 423 while (it && it->data) {
424 if (sp_zend_string_equals(function_name, (const zend_string*)(it->data))) { 424 if (sp_zend_string_equals(function_name, (const zend_string*)(it->data))) {
425 /* We've got a match, the function is whiteslited. */ 425 /* We've got a match, the function is whiteslited. */