From f74a3d813be237df00fe9fb0258cf248572c67c5 Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Sun, 9 Sep 2007 07:53:02 +0000 Subject: [PATCH] Call the renamed read_line_old() function (was read_line()). --- authenticate.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/authenticate.c b/authenticate.c index 484cebe0..8991ac43 100644 --- a/authenticate.c +++ b/authenticate.c @@ -241,7 +241,7 @@ char *auth_server(int f_in, int f_out, int module, const char *host, io_printf(f_out, "%s%s\n", leader, challenge); - if (!read_line(f_in, line, sizeof line - 1) + if (!read_line_old(f_in, line, sizeof line) || (pass = strchr(line, ' ')) == NULL) { rprintf(FLOG, "auth failed on module %s from %s (%s): " "invalid challenge response\n", -- 2.34.1