Commit 930432f1 authored by Cyrill Gorcunov's avatar Cyrill Gorcunov

sockets: Make socket name printing similar to vmas

Use same format as we do for VMA names.
Signed-off-by: 's avatarCyrill Gorcunov <gorcunov@openvz.org>
parent 1a1979cc
...@@ -702,7 +702,7 @@ void show_unixsk(char *name, int fd, bool show_header) ...@@ -702,7 +702,7 @@ void show_unixsk(char *name, int fd, bool show_header)
goto out; goto out;
if (!buf[0]) if (!buf[0])
buf[0] = '@'; buf[0] = '@';
pr_info("\t---> [%s]\n", buf); pr_info(" --> %s\n", buf);
} else } else
pr_info("\n"); pr_info("\n");
} }
......
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