mirror of
https://git.FreeBSD.org/src.git
synced 2025-02-04 17:15:50 +00:00
Fixed misspellings of 0 as NULL.
This commit is contained in:
parent
0bf7b204e3
commit
0f9a2306a5
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=126835
@ -572,7 +572,7 @@ bsde_get_rule_count(size_t buflen, char *errstr)
|
||||
int rule_count;
|
||||
|
||||
len = sizeof(rule_count);
|
||||
error = sysctlbyname(MIB ".rule_count", &rule_count, &len, NULL, NULL);
|
||||
error = sysctlbyname(MIB ".rule_count", &rule_count, &len, NULL, 0);
|
||||
if (error) {
|
||||
len = snprintf(errstr, buflen, strerror(errno));
|
||||
return (-1);
|
||||
@ -594,8 +594,7 @@ bsde_get_rule_slots(size_t buflen, char *errstr)
|
||||
int rule_slots;
|
||||
|
||||
len = sizeof(rule_slots);
|
||||
error = sysctlbyname(MIB ".rule_slots", &rule_slots, &len, NULL,
|
||||
NULL);
|
||||
error = sysctlbyname(MIB ".rule_slots", &rule_slots, &len, NULL, 0);
|
||||
if (error) {
|
||||
len = snprintf(errstr, buflen, strerror(errno));
|
||||
return (-1);
|
||||
|
Loading…
x
Reference in New Issue
Block a user