diff options
Diffstat (limited to 'networking/inetd.c')
-rw-r--r-- | networking/inetd.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/networking/inetd.c b/networking/inetd.c index ec7b2e8..4856b11 100644 --- a/networking/inetd.c +++ b/networking/inetd.c @@ -985,7 +985,7 @@ static void config(int sig ATTRIBUTE_UNUSED) } else #endif { - u_short port = htons(atoi(sep->se_service)); + uint16_t port = htons(atoi(sep->se_service)); // FIXME: atoi_or_else(str, 0) would be handy here if (!port) { /*XXX*/ strncpy(protoname, sep->se_proto, sizeof(protoname)); @@ -1037,8 +1037,8 @@ static void config(int sig ATTRIBUTE_UNUSED) register_rpc(sep); } else #endif - { - u_short port = htons(atoi(sep->se_service)); + { + uint16_t port = htons(atoi(sep->se_service)); if (!port) { /*XXX*/ strncpy(protoname, sep->se_proto, sizeof(protoname)); |