mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
It is not an error to have no devices.
This commit is contained in:
parent
037c3d0fb0
commit
d2d0b14453
1 changed files with 1 additions and 1 deletions
|
|
@ -549,7 +549,7 @@ devstat_selectdevs(struct device_selection **dev_select, int *num_selected,
|
|||
int selection_number = 0;
|
||||
int changed = 0, found = 0;
|
||||
|
||||
if ((dev_select == NULL) || (devices == NULL) || (numdevs <= 0))
|
||||
if ((dev_select == NULL) || (devices == NULL) || (numdevs < 0))
|
||||
return(-1);
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Reference in a new issue