From 34510fca0dc94416badc308c11e96cee02718ec3 Mon Sep 17 00:00:00 2001 From: Johan Danielsson Date: Tue, 21 Sep 2004 11:35:07 +0000 Subject: [PATCH] rename loop to rshd_loop git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@14240 ec53bebd-3082-4978-b11e-865c3cabbd6b --- appl/rsh/rshd.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/appl/rsh/rshd.c b/appl/rsh/rshd.c index b7bc2cbdd..bfc7a7870 100644 --- a/appl/rsh/rshd.c +++ b/appl/rsh/rshd.c @@ -457,10 +457,10 @@ recv_krb5_auth (int s, u_char *buf, #endif /* KRB5 */ static void -loop (int from0, int to0, - int to1, int from1, - int to2, int from2, - int have_errsock) +rshd_loop (int from0, int to0, + int to1, int from1, + int to2, int from2, + int have_errsock) { fd_set real_readset; int max_fd; @@ -581,7 +581,7 @@ setup_copier (int have_errsock) if (net_write (STDOUT_FILENO, "", 1) != 1) fatal (STDOUT_FILENO, "net_write", "Write failure."); - loop (STDIN_FILENO, p0[1], + rshd_loop (STDIN_FILENO, p0[1], STDOUT_FILENO, p1[0], STDERR_FILENO, p2[0], have_errsock);