From e678d7822c784974dffa1cd6a80aacad28ef7852 Mon Sep 17 00:00:00 2001 From: brian Date: Sun, 22 Mar 1998 00:43:04 +0000 Subject: Quiet -Wall in gcc-2.8.1 Obtained from: OpenBSD --- usr.sbin/pppctl/pppctl.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'usr.sbin/pppctl') diff --git a/usr.sbin/pppctl/pppctl.c b/usr.sbin/pppctl/pppctl.c index 92be115..918e0ec 100644 --- a/usr.sbin/pppctl/pppctl.c +++ b/usr.sbin/pppctl/pppctl.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: pppctl.c,v 1.14 1997/12/21 12:11:13 brian Exp $ + * $Id: pppctl.c,v 1.15 1997/12/27 13:44:42 brian Exp $ */ #include @@ -364,11 +364,12 @@ main(int argc, char **argv) edit = el_init("pppctl", stdin, stdout); el_source(edit, NULL); el_set(edit, EL_PROMPT, GetPrompt); - if ((env = getenv("EL_EDITOR"))) + if ((env = getenv("EL_EDITOR"))) { if (!strcmp(env, "vi")) el_set(edit, EL_EDITOR, "vi"); else if (!strcmp(env, "emacs")) el_set(edit, EL_EDITOR, "emacs"); + } el_set(edit, EL_SIGNAL, 1); el_set(edit, EL_HIST, history, (const char *)hist); while ((l = smartgets(edit, &len, fd))) { -- cgit v1.1