mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
Fix a conditional that got mucked up.
Sponsored by: iXsystems, Inc.
This commit is contained in:
parent
eb607f9034
commit
10e155c08a
1 changed files with 2 additions and 2 deletions
|
|
@ -464,10 +464,10 @@ mkimg(void)
|
|||
if (expand_number(size, &bytesize) == -1)
|
||||
error = errno;
|
||||
if (offset != NULL) {
|
||||
if (*offset != '+') {
|
||||
if (*offset != '+')
|
||||
abs_offset = true;
|
||||
else
|
||||
offset++;
|
||||
}
|
||||
if (expand_number(offset, &byteoffset) == -1)
|
||||
error = errno;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue