about summary refs log tree commit diff
path: root/Src
diff options
context:
space:
mode:
authorPeter Stephenson <pws@users.sourceforge.net>2002-05-29 13:15:35 +0000
committerPeter Stephenson <pws@users.sourceforge.net>2002-05-29 13:15:35 +0000
commit7898d5b1989c88e67f349ecfc088d86429932979 (patch)
treee51a606ed576c8db2df4ea0602a2df348758aa63 /Src
parentd8d9181861b4c09d8e7350b5056ad54cb253ac8d (diff)
downloadzsh-7898d5b1989c88e67f349ecfc088d86429932979.tar.gz
zsh-7898d5b1989c88e67f349ecfc088d86429932979.tar.xz
zsh-7898d5b1989c88e67f349ecfc088d86429932979.zip
17249: fix user output from ztcp
Diffstat (limited to 'Src')
-rw-r--r--Src/Modules/tcp.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/Src/Modules/tcp.c b/Src/Modules/tcp.c
index 27d11aea6..a6af6ed8d 100644
--- a/Src/Modules/tcp.c
+++ b/Src/Modules/tcp.c
@@ -461,7 +461,7 @@ bin_ztcp(char *nam, char **args, char *ops, int func)
 	setiparam("REPLY", sess->fd);
 
 	if (verbose)
-	    fprintf(shout, "%d listener is on fd %d\n", ntohs(sess->sock.in.sin_port), sess->fd);
+	    printf("%d listener is on fd %d\n", ntohs(sess->sock.in.sin_port), sess->fd);
 
 	return 0;
 
@@ -553,7 +553,7 @@ bin_ztcp(char *nam, char **args, char *ops, int func)
 	setiparam("REPLY", sess->fd);
 
 	if (verbose)
-	    fprintf(shout, "%d is on fd %d\n", ntohs(sess->peer.in.sin_port), sess->fd);
+	    printf("%d is on fd %d\n", ntohs(sess->peer.in.sin_port), sess->fd);
     }
     else
     {
@@ -575,7 +575,7 @@ bin_ztcp(char *nam, char **args, char *ops, int func)
 			remotename = ztpeer->h_name;
 		    else
 			remotename = ztrdup(inet_ntoa(sess->peer.in.sin_addr));
-		    fprintf(shout, "%s:%d %s %s:%d is on fd %d%s\n",
+		    printf("%s:%d %s %s:%d is on fd %d%s\n",
 			    localname, ntohs(sess->sock.in.sin_port),
 			    ((sess->flags & ZTCP_LISTEN) ? "-<" :
 			     ((sess->flags & ZTCP_INBOUND) ? "<-" : "->")),
@@ -649,7 +649,7 @@ bin_ztcp(char *nam, char **args, char *ops, int func)
 	    setiparam("REPLY", sess->fd);
 
 	    if (verbose)
-		fprintf(shout, "%s:%d is now on fd %d\n",
+		printf("%s:%d is now on fd %d\n",
 			desthost, destport, sess->fd);
 	}