From 21bac31e5543c05d2ab1d817b81032340cdd690a Mon Sep 17 00:00:00 2001 From: Bruce Evans Date: Fri, 28 Jan 2000 07:12:03 +0000 Subject: [PATCH] Changed setflags() to set_flags(). This fixes world breakage due to recently incremented namespace pollution in . --- libexec/getty/extern.h | 2 +- libexec/getty/main.c | 6 +++--- libexec/getty/subr.c | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/libexec/getty/extern.h b/libexec/getty/extern.h index 94fe3cc127c5..b7bb585adde0 100644 --- a/libexec/getty/extern.h +++ b/libexec/getty/extern.h @@ -58,6 +58,6 @@ const char *portselector __P((void)); void set_ttydefaults __P((int)); void setchars __P((void)); void setdefaults __P((void)); -void setflags __P((int)); +void set_flags __P((int)); int speed __P((int)); int getty_chat __P((char *, int, int)); diff --git a/libexec/getty/main.c b/libexec/getty/main.c index 0eac55b56907..03536318e744 100644 --- a/libexec/getty/main.c +++ b/libexec/getty/main.c @@ -386,7 +386,7 @@ main(argc, argv) } if (!(upper || lower || digit)) continue; - setflags(2); + set_flags(2); if (crmod) { tmode.c_iflag |= ICRNL; tmode.c_oflag |= ONLCR; @@ -486,7 +486,7 @@ setttymode(tname, raw) cfsetospeed(&tmode, speed(OS)); else if (SP) cfsetospeed(&tmode, speed(SP)); - setflags(0); + set_flags(0); setchars(); if (raw) cfmakeraw(&tmode); @@ -514,7 +514,7 @@ getname() return (0); } signal(SIGINT, interrupt); - setflags(1); + set_flags(1); prompt(); oflush(); if (PF > 0) { diff --git a/libexec/getty/subr.c b/libexec/getty/subr.c index 13c7bd060293..2c7bf637385f 100644 --- a/libexec/getty/subr.c +++ b/libexec/getty/subr.c @@ -258,7 +258,7 @@ setchars() #define ISSET(t, f) ((t) & (f)) void -setflags(n) +set_flags(n) int n; { register tcflag_t iflag, oflag, cflag, lflag;