mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-01 23:42:49 +02:00
2ee6d3729b
- split port argument at the rightmost colon, allows binding to specific IPv6 addresses - don't use uci ipaddr var but resolve ifname and get addresses from it (#9853) git-svn-id: svn://svn.openwrt.org/openwrt/trunk@27843 3c298f89-4303-0410-b956-a3cf2f4a3e73
12 lines
425 B
Diff
12 lines
425 B
Diff
--- a/svr-runopts.c
|
|
+++ b/svr-runopts.c
|
|
@@ -325,7 +325,7 @@ static void addportandaddress(char* spec
|
|
myspec = m_strdup(spec);
|
|
|
|
/* search for ':', that separates address and port */
|
|
- svr_opts.ports[svr_opts.portcount] = strchr(myspec, ':');
|
|
+ svr_opts.ports[svr_opts.portcount] = strrchr(myspec, ':');
|
|
|
|
if (svr_opts.ports[svr_opts.portcount] == NULL) {
|
|
/* no ':' -> the whole string specifies just a port */
|