mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
Correct an error message presumably as a result of cut/paste.
kvm_getfiles() referred to itself as kvm_getprocs().
This commit is contained in:
parent
fb8dde3146
commit
392cc8343e
1 changed files with 1 additions and 1 deletions
|
|
@ -138,7 +138,7 @@ kvm_getfiles(kd, op, arg, cnt)
|
|||
mib[1] = KERN_FILE;
|
||||
st = sysctl(mib, 2, NULL, &size, NULL, 0);
|
||||
if (st == -1) {
|
||||
_kvm_syserr(kd, kd->program, "kvm_getprocs");
|
||||
_kvm_syserr(kd, kd->program, "kvm_getfiles");
|
||||
return (0);
|
||||
}
|
||||
if (kd->argspc == 0)
|
||||
|
|
|
|||
Loading…
Reference in a new issue