From 18c36231b722aae6426f96c058c9854857da3cd1 Mon Sep 17 00:00:00 2001 From: brian Date: Mon, 20 Sep 1999 07:22:22 +0000 Subject: NetBSD has changed the el_init() prototype Submitted by: Kazuyoshi Kato --- usr.sbin/pppctl/pppctl.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'usr.sbin/pppctl') diff --git a/usr.sbin/pppctl/pppctl.c b/usr.sbin/pppctl/pppctl.c index 46c55c9..7cb649e 100644 --- a/usr.sbin/pppctl/pppctl.c +++ b/usr.sbin/pppctl/pppctl.c @@ -369,10 +369,11 @@ main(int argc, char **argv) size = 20; #ifdef __NetBSD__ history(hist, NULL, H_SETSIZE, size); + edit = el_init("pppctl", stdin, stdout, stderr); #else history(hist, H_EVENT, size); -#endif edit = el_init("pppctl", stdin, stdout); +#endif el_source(edit, NULL); el_set(edit, EL_PROMPT, GetPrompt); if ((env = getenv("EL_EDITOR"))) { -- cgit v1.1