Use a more standard error message. Add FBSDID.

Reviewed by:	ru
This commit is contained in:
Philippe Charnier 2003-02-05 20:08:39 +00:00
parent 822ded67fe
commit 29e3edcc64

View file

@ -8,10 +8,11 @@
* You may copy, modify and distribute this software (natd.c) freely.
*
* Ari Suutari <suutari@iki.fi>
*
* $FreeBSD$
*/
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#define SYSLOG_NAMES
#include <sys/types.h>
@ -1601,7 +1602,7 @@ u_short StrToPort (const char* str, const char* proto)
sp = getservbyname (str, proto);
if (!sp)
errx (1, "unknown service %s/%s", str, proto);
errx (1, "%s/%s: unknown service", str, proto);
return sp->s_port;
}
@ -1633,7 +1634,7 @@ int StrToPortRange (const char* str, const char* proto, port_range *portRange)
}
/* Error in port range field. */
errx (1, "unknown service %s/%s", str, proto);
errx (1, "%s/%s: unknown service", str, proto);
}
/* Port range, get the values and sanity check. */