]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
support: Fix typo in xgetsockname error message
authorAvinal Kumar <avinal.xlvii@gmail.com>
Fri, 17 May 2024 15:28:04 +0000 (20:58 +0530)
committerCarlos O'Donell <carlos@redhat.com>
Wed, 5 Jun 2024 13:58:55 +0000 (09:58 -0400)
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>
support/xgetsockname.c

index fd1a42ea1ebd50af4c3779642beaa1b0d9d3661e..7848046d234d2605ec50d5cd4390a4628c381504 100644 (file)
@@ -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);
 }