From c2c5fe440f099ca151032fdb9e74a22c56801794 Mon Sep 17 00:00:00 2001 From: "Todd T. Fries" Date: Sat, 21 Mar 1998 16:39:25 +0000 Subject: quiet -Wall in gcc2.8.1 --- usr.sbin/pppctl/pppctl.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/usr.sbin/pppctl/pppctl.c b/usr.sbin/pppctl/pppctl.c index c1bba75352e..15ae7dcdc62 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.6 1997/12/27 13:44:15 brian Exp $ + * $Id: pppctl.c,v 1.7 1998/03/21 16:39:24 todd 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.2.3