libbb: reuse "bad port" error message string

function                                             old     new   delta
.rodata                                           104251  104232     -19

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
Denys Vlasenko 2021-09-10 09:48:55 +02:00
parent c421388dca
commit c00bcf2d2c

View File

@ -231,7 +231,7 @@ IF_NOT_FEATURE_IPV6(sa_family_t af = AF_INET;)
cp++; /* skip ':' */
port = bb_strtou(cp, NULL, 10);
if (errno || (unsigned)port > 0xffff) {
bb_error_msg("bad port spec '%s'", org_host);
bb_error_msg("bad port '%s'", cp);
if (ai_flags & DIE_ON_ERROR)
xfunc_die();
return NULL;