From: Bob Weinand Date: Thu, 9 Oct 2014 10:01:25 +0000 (+0200) Subject: Ports are unsigned short, use unsigned to display X-Git-Tag: php-5.6.3RC1~51^2~57 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ca7f2f5f43eda96c098553f6a9e99c2ea6c4d17b;p=php Ports are unsigned short, use unsigned to display --- diff --git a/phpdbg.c b/phpdbg.c index 36e4bf8068..787ffe7db8 100644 --- a/phpdbg.c +++ b/phpdbg.c @@ -791,18 +791,18 @@ static void phpdbg_remote_close(int socket, FILE *stream) { } /* don't inline this, want to debug it easily, will inline when done */ -static int phpdbg_remote_init(const char* address, short port, int *server, int *socket, FILE **stream) { +static int phpdbg_remote_init(const char* address, unsigned short port, int *server, int *socket, FILE **stream) { phpdbg_remote_close(*socket, *stream); *server = phpdbg_open_socket(address, port); if (*server < 0) { - phpdbg_rlog(fileno(stderr), "Initializing connection on %s:%d failed", address, port); + phpdbg_rlog(fileno(stderr), "Initializing connection on %s:%u failed", address, port); return FAILURE; } - phpdbg_rlog(fileno(stderr), "accepting connections on %s:%d", address, port); + phpdbg_rlog(fileno(stderr), "accepting connections on %s:%u", address, port); { struct sockaddr_in address; socklen_t size = sizeof(address);