aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAvinal Kumar <avinal.xlvii@gmail.com>2024-05-17 20:58:04 +0530
committerCarlos O'Donell <carlos@redhat.com>2024-06-05 09:58:55 -0400
commit54c1efdac55b756a4e2ea95590bcc3ba396a6568 (patch)
tree70be99b0202c35196f6b6b91e6d5aa2ef56cab57
parent2f7246015c0d0760ab4529c4b13b2816337bed35 (diff)
downloadglibc-54c1efdac55b756a4e2ea95590bcc3ba396a6568.zip
glibc-54c1efdac55b756a4e2ea95590bcc3ba396a6568.tar.gz
glibc-54c1efdac55b756a4e2ea95590bcc3ba396a6568.tar.bz2
support: Fix typo in xgetsockname error message
The error message in xgetsockname was incorrectly referring to a different function. This commit fixes that. Suggested-by: Arjun Shankar <arjun@redhat.com> Signed-off-by: Avinal Kumar <avinal.xlvii@gmail.com> Reviewed-by: Carlos O'Donell <carlos@redhat.com>
-rw-r--r--support/xgetsockname.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/support/xgetsockname.c b/support/xgetsockname.c
index fd1a42e..7848046 100644
--- a/support/xgetsockname.c
+++ b/support/xgetsockname.c
@@ -1,5 +1,6 @@
/* getsockname with error checking.
Copyright (C) 2016-2024 Free Software Foundation, Inc.
+ Copyright The GNU Toolchain Authors.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@@ -26,5 +27,5 @@ void
xgetsockname (int fd, struct sockaddr *sa, socklen_t *plen)
{
if (getsockname (fd, sa, plen) != 0)
- FAIL_EXIT1 ("setsockopt (%d): %m", fd);
+ FAIL_EXIT1 ("getsockname (%d): %m", fd);
}