mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-24 10:22:41 +08: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:
parent
462e83a4a0
commit
36f30c104f
@ -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>
|
||||
|
||||
* sysdeps/powerpc/powerpc32/dl-machine.c
|
||||
|
@ -92,12 +92,12 @@ __netlink_assert_response (int fd, ssize_t result)
|
||||
if (family < 0)
|
||||
__snprintf (message, sizeof (message),
|
||||
"Unexpected netlink response of size %zd"
|
||||
" on descriptor %d",
|
||||
" on descriptor %d\n",
|
||||
result, fd);
|
||||
else
|
||||
__snprintf (message, sizeof (message),
|
||||
"Unexpected netlink response of size %zd"
|
||||
" on descriptor %d (address family %d)",
|
||||
" on descriptor %d (address family %d)\n",
|
||||
result, fd, family);
|
||||
__libc_fatal (message);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user