summaryrefslogtreecommitdiff
path: root/ext/snmp
diff options
context:
space:
mode:
authorMáté Kocsis <kocsismate@woohoolabs.com>2020-01-19 08:50:48 +0100
committerMáté Kocsis <kocsismate@woohoolabs.com>2020-01-19 18:28:43 +0100
commit99db00b1f2c6338041bbe3db8b6d0eaee5cd8c94 (patch)
treeade7b04cac0600cb793393ce084ce34c11a2bb04 /ext/snmp
parent7426e3b6a1a5a6e2890415cc1b64e8d74a6927a3 (diff)
downloadphp-git-99db00b1f2c6338041bbe3db8b6d0eaee5cd8c94.tar.gz
Fix #78880 Another round
Diffstat (limited to 'ext/snmp')
-rw-r--r--ext/snmp/snmp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/snmp/snmp.c b/ext/snmp/snmp.c
index 95117686f8..ac630871bd 100644
--- a/ext/snmp/snmp.c
+++ b/ext/snmp/snmp.c
@@ -308,7 +308,7 @@ static void php_snmp_getvalue(struct variable_list *vars, zval *snmpval, int val
int buflen = sizeof(sbuf) - 1;
int val_len = vars->val_len;
- /* use emalloc() for large values, use static array otherwize */
+ /* use emalloc() for large values, use static array otherwise */
/* There is no way to know the size of buffer snprint_value() needs in order to print a value there.
* So we are forced to probe it