summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkus Friedl <markus@cvs.openbsd.org>2001-02-07 22:43:17 +0000
committerMarkus Friedl <markus@cvs.openbsd.org>2001-02-07 22:43:17 +0000
commit2a9cce8709e463396805599e151916cbe0050fa6 (patch)
treedafa788ece849d53d5ec56bb457c18dad8353a1b
parentd9abb3181cd8e1e4da84e7d03d15c10b843d1ce4 (diff)
s/getline/Linebuf_getline/; from roumen.petrov@skalasoft.com
-rw-r--r--usr.bin/ssh/ssh-keyscan.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ssh/ssh-keyscan.c b/usr.bin/ssh/ssh-keyscan.c
index 35ab5ad102d..bb482ffda22 100644
--- a/usr.bin/ssh/ssh-keyscan.c
+++ b/usr.bin/ssh/ssh-keyscan.c
@@ -8,7 +8,7 @@
*/
#include "includes.h"
-RCSID("$OpenBSD: ssh-keyscan.c,v 1.13 2001/02/07 18:04:50 itojun Exp $");
+RCSID("$OpenBSD: ssh-keyscan.c,v 1.14 2001/02/07 22:43:16 markus Exp $");
#include <sys/queue.h>
#include <errno.h>
@@ -138,7 +138,7 @@ Linebuf_lineno(Linebuf * lb)
}
static inline char *
-getline(Linebuf * lb)
+Linebuf_getline(Linebuf * lb)
{
int n = 0;
@@ -527,7 +527,7 @@ nexthost(int argc, char **argv)
error("ignoring invalid/misplaced option `%s'", argv[argno++]);
} else {
char *line;
- line = getline(lb);
+ line = Linebuf_getline(lb);
if (line)
return (line);
Linebuf_free(lb);