Fix a conditional that got mucked up.

Sponsored by:	iXsystems, Inc.
This commit is contained in:
Benno Rice 2018-04-12 17:16:13 +00:00
parent eb607f9034
commit 10e155c08a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=332440

View file

@ -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;
}