1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-29 11:41:21 +03:00

__netlink_assert_response: Add more __libc_fatal newlines [BZ #20271]

Commit a6e8926f8d ("[BZ #20271] Add
newlines in __libc_fatal calls.") missed two places that need
changing.
This commit is contained in:
Florian Weimer
2019-03-01 12:21:20 +01:00
parent 462e83a4a0
commit 36f30c104f
2 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,9 @@
2019-03-01 Florian Weimer <fweimer@redhat.com>
[BZ #20271]
* sysdeps/unix/sysv/linux/netlink_assert_response.c
(__netlink_assert_response): Add additional missing newlines.
2019-02-28 Joseph Myers <joseph@codesourcery.com> 2019-02-28 Joseph Myers <joseph@codesourcery.com>
* sysdeps/powerpc/powerpc32/dl-machine.c * sysdeps/powerpc/powerpc32/dl-machine.c

View File

@ -92,12 +92,12 @@ __netlink_assert_response (int fd, ssize_t result)
if (family < 0) if (family < 0)
__snprintf (message, sizeof (message), __snprintf (message, sizeof (message),
"Unexpected netlink response of size %zd" "Unexpected netlink response of size %zd"
" on descriptor %d", " on descriptor %d\n",
result, fd); result, fd);
else else
__snprintf (message, sizeof (message), __snprintf (message, sizeof (message),
"Unexpected netlink response of size %zd" "Unexpected netlink response of size %zd"
" on descriptor %d (address family %d)", " on descriptor %d (address family %d)\n",
result, fd, family); result, fd, family);
__libc_fatal (message); __libc_fatal (message);
} }