public inbox for glibc-cvs@sourceware.org
help / color / mirror / Atom feed
* [glibc] support: Fix typo in xgetsockname error message
@ 2024-06-05 15:12 Carlos O'Donell
  0 siblings, 0 replies; only message in thread
From: Carlos O'Donell @ 2024-06-05 15:12 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=54c1efdac55b756a4e2ea95590bcc3ba396a6568

commit 54c1efdac55b756a4e2ea95590bcc3ba396a6568
Author: Avinal Kumar <avinal.xlvii@gmail.com>
Date:   Fri May 17 20:58:04 2024 +0530

    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>

Diff:
---
 support/xgetsockname.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/support/xgetsockname.c b/support/xgetsockname.c
index fd1a42ea1e..7848046d23 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);
 }

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2024-06-05 15:12 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-06-05 15:12 [glibc] support: Fix typo in xgetsockname error message Carlos O'Donell

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).