From: José Bollo Date: Tue, 30 Oct 2018 15:25:54 +0000 (+0100) Subject: afb-socket: Relax requirement of tcp ending slash X-Git-Tag: 6.99.1~5^2 X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?p=src%2Fapp-framework-binder.git;a=commitdiff_plain;h=875007d15f4a73cd2c1078d821b16008f34a8abf afb-socket: Relax requirement of tcp ending slash The uri for tcp was requiring a slash (/) after the port. This change allows to not provide that slash. This is usefull for future implementation of HTTP server selection. Change-Id: I0a76d167065258d242845579b7c8728eefcc359f Signed-off-by: José Bollo --- diff --git a/src/afb-socket.c b/src/afb-socket.c index 63de2cf2..ee3cfbe2 100644 --- a/src/afb-socket.c +++ b/src/afb-socket.c @@ -165,7 +165,7 @@ static int open_tcp(const char *spec, int server) struct addrinfo hint, *rai, *iai; /* scan the uri */ - tail = strchr(spec, '/'); + tail = strchrnul(spec, '/'); service = strchr(spec, ':'); if (tail == NULL || service == NULL || tail < service) { errno = EINVAL;