Commit f70d96a4 authored by Li Yewang's avatar Li Yewang Committed by Stephen Hemminger

Fix the error of "ss -f inet -t"

when using the "ss -f inet -t" command to show the tcp socket information of
inet domain, we get the error message: "ss: no socket tables to show with such filter."

This patch can fix this bug.
Signed-off-by: default avatarLi Yewang <lyw@cn.fujitsu.com>
Signed-off-by: default avatarStephen Hemminger <stephen.hemminger@vyatta.com>
parent 5e3bb534
......@@ -2622,9 +2622,7 @@ int main(int argc, char *argv[])
int mask2;
if (preferred_family == AF_INET ||
preferred_family == AF_INET6) {
mask2= (1<<TCP_DB);
if (!do_default)
mask2 = (1<<UDP_DB)|(1<<RAW_DB);
mask2= current_filter.dbs;
} else if (preferred_family == AF_PACKET) {
mask2 = PACKET_DBM;
} else if (preferred_family == AF_UNIX) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment