diff options
-rw-r--r-- | bin/stty/cchar.c | 4 | ||||
-rw-r--r-- | bin/stty/gfmt.c | 4 | ||||
-rw-r--r-- | bin/stty/key.c | 10 | ||||
-rw-r--r-- | bin/stty/modes.c | 4 | ||||
-rw-r--r-- | bin/stty/print.c | 4 | ||||
-rw-r--r-- | bin/stty/stty.c | 6 | ||||
-rw-r--r-- | bin/stty/util.c | 4 | ||||
-rw-r--r-- | bin/sync/sync.c | 6 | ||||
-rw-r--r-- | bin/test/operators.c | 4 | ||||
-rw-r--r-- | bin/test/test.c | 6 |
10 files changed, 26 insertions, 26 deletions
diff --git a/bin/stty/cchar.c b/bin/stty/cchar.c index 8b0c97004024..600592a0daaf 100644 --- a/bin/stty/cchar.c +++ b/bin/stty/cchar.c @@ -30,11 +30,11 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: cchar.c,v 1.3 1995/04/28 19:29:28 ache Exp $ + * $Id: cchar.c,v 1.4 1995/05/30 00:07:25 rgrimes Exp $ */ #ifndef lint -static char sccsid[] = "@(#)cchar.c 8.5 (Berkeley) 4/2/94"; +static char const sccsid[] = "@(#)cchar.c 8.5 (Berkeley) 4/2/94"; #endif /* not lint */ #include <sys/types.h> diff --git a/bin/stty/gfmt.c b/bin/stty/gfmt.c index f6ef0e15c443..62b30dcb4c51 100644 --- a/bin/stty/gfmt.c +++ b/bin/stty/gfmt.c @@ -30,11 +30,11 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: gfmt.c,v 1.3 1995/03/19 13:29:23 joerg Exp $ + * $Id: gfmt.c,v 1.4 1995/05/30 00:07:26 rgrimes Exp $ */ #ifndef lint -static char sccsid[] = "@(#)gfmt.c 8.6 (Berkeley) 4/2/94"; +static char const sccsid[] = "@(#)gfmt.c 8.6 (Berkeley) 4/2/94"; #endif /* not lint */ #include <sys/types.h> diff --git a/bin/stty/key.c b/bin/stty/key.c index 58aa60e002b2..d31e846f023b 100644 --- a/bin/stty/key.c +++ b/bin/stty/key.c @@ -30,11 +30,11 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: key.c,v 1.4 1995/04/28 19:29:29 ache Exp $ + * $Id: key.c,v 1.5 1996/12/07 11:07:20 bde Exp $ */ #ifndef lint -static char sccsid[] = "@(#)key.c 8.3 (Berkeley) 4/2/94"; +static char const sccsid[] = "@(#)key.c 8.3 (Berkeley) 4/2/94"; #endif /* not lint */ #include <sys/types.h> @@ -192,11 +192,11 @@ f_extproc(ip) struct info *ip; { - if (!ip->off) { - int tmp = 1; + if (ip->off) { + int tmp = 0; (void)ioctl(ip->fd, TIOCEXT, &tmp); } else { - int tmp = 0; + int tmp = 1; (void)ioctl(ip->fd, TIOCEXT, &tmp); } } diff --git a/bin/stty/modes.c b/bin/stty/modes.c index 0aa7438ae7f2..d86aa70ced18 100644 --- a/bin/stty/modes.c +++ b/bin/stty/modes.c @@ -30,11 +30,11 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: modes.c,v 1.2 1994/09/24 02:58:59 davidg Exp $ + * $Id: modes.c,v 1.3 1995/04/29 15:17:17 bde Exp $ */ #ifndef lint -static char sccsid[] = "@(#)modes.c 8.3 (Berkeley) 4/2/94"; +static char const sccsid[] = "@(#)modes.c 8.3 (Berkeley) 4/2/94"; #endif /* not lint */ #include <sys/types.h> diff --git a/bin/stty/print.c b/bin/stty/print.c index 6df7fea2dc16..d110437c7f07 100644 --- a/bin/stty/print.c +++ b/bin/stty/print.c @@ -30,11 +30,11 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: print.c,v 1.4 1995/04/29 15:17:16 bde Exp $ + * $Id: print.c,v 1.5 1995/05/30 00:07:27 rgrimes Exp $ */ #ifndef lint -static char sccsid[] = "@(#)print.c 8.6 (Berkeley) 4/16/94"; +static char const sccsid[] = "@(#)print.c 8.6 (Berkeley) 4/16/94"; #endif /* not lint */ #include <sys/types.h> diff --git a/bin/stty/stty.c b/bin/stty/stty.c index 0f5e92582033..c45ed5764aa2 100644 --- a/bin/stty/stty.c +++ b/bin/stty/stty.c @@ -30,17 +30,17 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: stty.c,v 1.5 1995/07/02 08:54:27 joerg Exp $ + * $Id: stty.c,v 1.6 1995/07/04 08:16:30 bde Exp $ */ #ifndef lint -static char copyright[] = +static char const copyright[] = "@(#) Copyright (c) 1989, 1991, 1993, 1994\n\ The Regents of the University of California. All rights reserved.\n"; #endif /* not lint */ #ifndef lint -static char sccsid[] = "@(#)stty.c 8.3 (Berkeley) 4/2/94"; +static char const sccsid[] = "@(#)stty.c 8.3 (Berkeley) 4/2/94"; #endif /* not lint */ #include <sys/types.h> diff --git a/bin/stty/util.c b/bin/stty/util.c index 036c48eb1f16..60768876b7f2 100644 --- a/bin/stty/util.c +++ b/bin/stty/util.c @@ -30,11 +30,11 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: util.c,v 1.2 1994/09/24 02:59:05 davidg Exp $ + * $Id: util.c,v 1.3 1995/07/04 08:16:32 bde Exp $ */ #ifndef lint -static char sccsid[] = "@(#)util.c 8.3 (Berkeley) 4/2/94"; +static char const sccsid[] = "@(#)util.c 8.3 (Berkeley) 4/2/94"; #endif /* not lint */ #include <sys/types.h> diff --git a/bin/sync/sync.c b/bin/sync/sync.c index 7e5a387e1a21..70453f24dc4a 100644 --- a/bin/sync/sync.c +++ b/bin/sync/sync.c @@ -30,17 +30,17 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $Id: sync.c,v 1.4 1994/09/24 02:59:09 davidg Exp $ */ #ifndef lint -static char copyright[] = +static char const copyright[] = "@(#) Copyright (c) 1987, 1993\n\ The Regents of the University of California. All rights reserved.\n"; #endif /* not lint */ #ifndef lint -static char sccsid[] = "@(#)sync.c 8.1 (Berkeley) 5/31/93"; +static char const sccsid[] = "@(#)sync.c 8.1 (Berkeley) 5/31/93"; #endif /* not lint */ #include <unistd.h> diff --git a/bin/test/operators.c b/bin/test/operators.c index 38d73dab38c3..73568553b282 100644 --- a/bin/test/operators.c +++ b/bin/test/operators.c @@ -30,11 +30,11 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $Id: operators.c,v 1.3 1994/09/24 02:59:12 davidg Exp $ */ #ifndef lint -static char sccsid[] = "@(#)operators.c 8.3 (Berkeley) 4/2/94"; +static char const sccsid[] = "@(#)operators.c 8.3 (Berkeley) 4/2/94"; #endif /* not lint */ /* diff --git a/bin/test/test.c b/bin/test/test.c index 896d8d0d646b..aef3d7e95836 100644 --- a/bin/test/test.c +++ b/bin/test/test.c @@ -33,17 +33,17 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: test.c,v 1.12 1995/10/28 11:54:42 ache Exp $ + * $Id: test.c,v 1.13 1996/03/11 11:01:03 joerg Exp $ */ #ifndef lint -static char copyright[] = +static char const copyright[] = "@(#) Copyright (c) 1992, 1993, 1994\n\ The Regents of the University of California. All rights reserved.\n"; #endif /* not lint */ #ifndef lint -static char sccsid[] = "@(#)test.c 8.3 (Berkeley) 4/2/94"; +static char const sccsid[] = "@(#)test.c 8.3 (Berkeley) 4/2/94"; #endif /* not lint */ #include <sys/types.h> |