When --map-auto is used by a user not listed in /etc/subuid, the error
unshare: no line matching user "foo" in /etc/subuid: No error information
is emitted. Fix the stray ': No error information', correcting err() to
the intended errx().
Signed-off-by: Chris Webb <chris@arachsys.com>
return map;
}
- err(EXIT_FAILURE, _("no line matching user \"%s\" in %s"),
+ errx(EXIT_FAILURE, _("no line matching user \"%s\" in %s"),
pw->pw_name, filename);
}