public inbox for cygwin-cvs@sourceware.org
help / color / mirror / Atom feed
* [newlib-cygwin] Cygwin: AF_UNIX: use get_unique_id to create pipe name
@ 2018-03-12  9:22 Corinna Vinschen
  0 siblings, 0 replies; only message in thread
From: Corinna Vinschen @ 2018-03-12  9:22 UTC (permalink / raw)
  To: cygwin-cvs

https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=de29476ed5ea1298389f20c8f3b1b57d887f0b27

commit de29476ed5ea1298389f20c8f3b1b57d887f0b27
Author: Corinna Vinschen <corinna@vinschen.de>
Date:   Sun Mar 11 14:54:20 2018 +0100

    Cygwin: AF_UNIX: use get_unique_id to create pipe name
    
    It's the same as get_plain_ino in this case, but it's cleaner
    and easier to understand.
    
    Signed-off-by: Corinna Vinschen <corinna@vinschen.de>

Diff:
---
 winsup/cygwin/fhandler_socket_unix.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/winsup/cygwin/fhandler_socket_unix.cc b/winsup/cygwin/fhandler_socket_unix.cc
index 4f7d9e0..ec5611a 100644
--- a/winsup/cygwin/fhandler_socket_unix.cc
+++ b/winsup/cygwin/fhandler_socket_unix.cc
@@ -204,7 +204,7 @@ fhandler_socket_unix::gen_pipe_name ()
   __small_swprintf (pipe_name_buf, L"cygwin-%S-unix-%C-%016_X",
 		    &cygheap->installation_key,
 		    get_type_char (),
-		    get_plain_ino ());
+		    get_unique_id ());
   RtlInitUnicodeString (&pipe_name, pipe_name_buf);
   pc.set_nt_native_path (&pipe_name);
 }


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

only message in thread, other threads:[~2018-03-12  9:22 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-03-12  9:22 [newlib-cygwin] Cygwin: AF_UNIX: use get_unique_id to create pipe name Corinna Vinschen

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).