mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 08:43:19 -04:00
Unbreak the build when MAC is not defined
7a2c93b86e removed the use of "error" when MAC was not
defined, resulting in an unused variable error.
Sponsored by: Netflix
Reviewed by: jhb
This commit is contained in:
parent
2e2a1c3139
commit
ac4e3a27ab
1 changed files with 2 additions and 1 deletions
|
|
@ -145,7 +145,8 @@ soo_write(struct file *fp, struct uio *uio, struct ucred *active_cred,
|
|||
if (error)
|
||||
return (error);
|
||||
#endif
|
||||
return (sousrsend(so, NULL, uio, NULL, 0, NULL));
|
||||
error = sousrsend(so, NULL, uio, NULL, 0, NULL);
|
||||
return (error);
|
||||
}
|
||||
|
||||
static int
|
||||
|
|
|
|||
Loading…
Reference in a new issue