mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-28 00:21:52 +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:
@ -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);
|
||||
}
|
||||
|
Reference in New Issue
Block a user