mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Minor cleanup of initialized variables
Sort the list and cleanup trailing white-space Reviewed by: stevek MFC after: 1 week
This commit is contained in:
parent
b0b2161ce4
commit
005ff484b9
1 changed files with 3 additions and 3 deletions
|
|
@ -207,15 +207,15 @@ install(char *pkgname)
|
|||
if (*s == '\0')
|
||||
goto invalid_url;
|
||||
|
||||
proto = NULL;
|
||||
devname = NULL;
|
||||
devnamelen = 0;
|
||||
|
||||
proto = NULL;
|
||||
local = 0;
|
||||
|
||||
if (i == 4 && !strncasecmp(pkgname, "tftp", i)) {
|
||||
devname = "net0";
|
||||
devnamelen = 4;
|
||||
proto = &tftp_fsops;
|
||||
local = 0;
|
||||
} else if (i == 4 && !strncasecmp(pkgname, "file", i)) {
|
||||
currdev = getenv("currdev");
|
||||
local = 1;
|
||||
|
|
|
|||
Loading…
Reference in a new issue