blob: d38922e5c215dae2c13659a0fe433df44d7b9dd8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
From 4b1ed2a22748f4adb7a5e30df9284147601ccd66 Mon Sep 17 00:00:00 2001
From: Remi Collet <remi@remirepo.net>
Date: Thu, 6 Feb 2025 06:44:46 +0100
Subject: [PATCH] missing brackets
---
ip2proxy.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/ip2proxy.c b/ip2proxy.c
index 0914c00..622f7ee 100644
--- a/ip2proxy.c
+++ b/ip2proxy.c
@@ -47,7 +47,7 @@ static zend_function_entry ip2proxy_functions_entry[] = {
PHP_FE(ip2proxy_get_last_seen, ip2proxy_ip_address)
PHP_FE(ip2proxy_get_threat, ip2proxy_ip_address)
PHP_FE(ip2proxy_get_provider, ip2proxy_ip_address)
- PHP_FE(ip2proxy_get_fraud_score, ip2proxy_ip_address
+ PHP_FE(ip2proxy_get_fraud_score, ip2proxy_ip_address)
PHP_FE(ip2proxy_get_all, ip2proxy_ip_address)
PHP_FE(ip2proxy_close, ip2proxy_void)
PHP_FE(ip2proxy_delete_shm, ip2proxy_void)
|