zsh-workers
 help / color / mirror / code / Atom feed
* PATCH: gethostbyaddr() argument in tcp.c
@ 2002-05-14 17:44 Peter Stephenson
  0 siblings, 0 replies; only message in thread
From: Peter Stephenson @ 2002-05-14 17:44 UTC (permalink / raw)
  To: Zsh hackers list

This one is entirely cosmetic.  The latest POSIX/SUS/ISO specification
says the first argument is `const void *', which wouldn't cause a
warning; however, solaris uses `const char *', which does.  Converting
explicitly to `const void *' should keep everybody happy, I hope.

Index: Src/Modules/tcp.c
===================================================================
RCS file: /cvsroot/zsh/zsh/Src/Modules/tcp.c,v
retrieving revision 1.26
diff -u -r1.26 tcp.c
--- Src/Modules/tcp.c	14 May 2002 17:29:53 -0000	1.26
+++ Src/Modules/tcp.c	14 May 2002 17:38:59 -0000
@@ -565,12 +565,12 @@
 
 		if (sess->fd != -1)
 		{
-		    zthost = gethostbyaddr(&(sess->sock.in.sin_addr), sizeof(struct sockaddr_in), AF_INET);
+		    zthost = gethostbyaddr((const void *)&(sess->sock.in.sin_addr), sizeof(struct sockaddr_in), AF_INET);
 		    if (zthost)
 			localname = zthost->h_name;
 		    else
 			localname = ztrdup(inet_ntoa(sess->sock.in.sin_addr));
-		    ztpeer = gethostbyaddr(&(sess->peer.in.sin_addr), sizeof(struct sockaddr_in), AF_INET);
+		    ztpeer = gethostbyaddr((const void *)&(sess->peer.in.sin_addr), sizeof(struct sockaddr_in), AF_INET);
 		    if (ztpeer)
 			remotename = ztpeer->h_name;
 		    else

-- 
Peter Stephenson <pws@csr.com>                  Software Engineer
CSR Ltd., Science Park, Milton Road,
Cambridge, CB4 0WH, UK                          Tel: +44 (0)1223 392070


**********************************************************************
The information transmitted is intended only for the person or
entity to which it is addressed and may contain confidential 
and/or privileged material. 
Any review, retransmission, dissemination or other use of, or
taking of any action in reliance upon, this information by 
persons or entities other than the intended recipient is 
prohibited.  
If you received this in error, please contact the sender and 
delete the material from any computer.
**********************************************************************


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

only message in thread, other threads:[~2002-05-14 17:45 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-05-14 17:44 PATCH: gethostbyaddr() argument in tcp.c Peter Stephenson

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

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 NNTP newsgroup(s).