diff options
author | David S. Miller <davem@davemloft.net> | 2016-11-15 10:54:36 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-11-15 10:54:36 -0500 |
commit | bb598c1b8c9bf56981927dcb8c0dc34b8ff95342 (patch) | |
tree | 69fe6d3bcdbf0acb76e42b144d8af5a0234ccdcb /net/unix/af_unix.c | |
parent | eb2ca35f1814dad3ca547261eedfbbd0d65a0efc (diff) | |
parent | e76d21c40bd6c67fd4e2c1540d77e113df962b4d (diff) |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net
Several cases of bug fixes in 'net' overlapping other changes in
'net-next-.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/unix/af_unix.c')
-rw-r--r-- | net/unix/af_unix.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/unix/af_unix.c b/net/unix/af_unix.c index 87620183910e..6a705d0ff889 100644 --- a/net/unix/af_unix.c +++ b/net/unix/af_unix.c | |||
@@ -2812,7 +2812,8 @@ static int unix_seq_show(struct seq_file *seq, void *v) | |||
2812 | i++; | 2812 | i++; |
2813 | } | 2813 | } |
2814 | for ( ; i < len; i++) | 2814 | for ( ; i < len; i++) |
2815 | seq_putc(seq, u->addr->name->sun_path[i]); | 2815 | seq_putc(seq, u->addr->name->sun_path[i] ?: |
2816 | '@'); | ||
2816 | } | 2817 | } |
2817 | unix_state_unlock(s); | 2818 | unix_state_unlock(s); |
2818 | seq_putc(seq, '\n'); | 2819 | seq_putc(seq, '\n'); |