diff options
author | 2001-02-07 22:43:16 +0000 | |
---|---|---|
committer | 2001-02-07 22:43:16 +0000 | |
commit | 4a052c852ecc71f6b428baee9e8d33d4808f3164 (patch) | |
tree | ac8e480ef1f1bd702639cafa162be1675559fc79 | |
parent | portable; ok markus@ (diff) | |
download | wireguard-openbsd-4a052c852ecc71f6b428baee9e8d33d4808f3164.tar.xz wireguard-openbsd-4a052c852ecc71f6b428baee9e8d33d4808f3164.zip |
s/getline/Linebuf_getline/; from roumen.petrov@skalasoft.com
-rw-r--r-- | usr.bin/ssh/ssh-keyscan.c | 6 |
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); |