summaryrefslogtreecommitdiff
path: root/usr/src/lib/libnsl/dial/line.c
diff options
context:
space:
mode:
Diffstat (limited to 'usr/src/lib/libnsl/dial/line.c')
-rw-r--r--usr/src/lib/libnsl/dial/line.c14
1 files changed, 6 insertions, 8 deletions
diff --git a/usr/src/lib/libnsl/dial/line.c b/usr/src/lib/libnsl/dial/line.c
index fd6378beca..08195abbbd 100644
--- a/usr/src/lib/libnsl/dial/line.c
+++ b/usr/src/lib/libnsl/dial/line.c
@@ -2,9 +2,8 @@
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
- * Common Development and Distribution License, Version 1.0 only
- * (the "License"). You may not use this file except in compliance
- * with the License.
+ * Common Development and Distribution License (the "License").
+ * You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* or http://www.opensolaris.org/os/licensing.
@@ -21,15 +20,13 @@
*/
/*
- * Copyright 2006 Sun Microsystems, Inc. All rights reserved.
+ * Copyright 2009 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
/* Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T */
/* All Rights Reserved */
-#pragma ident "%Z%%M% %I% %E% SMI"
-
/*
* This is a new line.c, which consists of line.c and culine.c
* merged together.
@@ -71,6 +68,7 @@ static const struct sg_spds {
{230400, B230400},
{307200, B307200},
{460800, B460800},
+ {921600, B921600},
{0, 0}
};
@@ -207,10 +205,10 @@ fixline(int tty, int spwant, int type)
for (i = 0; i < NCC; i++)
ttbuf.c_cc[i] = ttbufs.c_cc[i];
ASSERT((*Ioctl)(tty, TCSETAW, &ttbuf) >= 0,
- "RETURN FROM fixline ioctl", "", errno);
+ "RETURN FROM fixline ioctl", "", errno);
} else {
ASSERT((*Ioctl)(tty, TCSETSW, &ttbufs) >= 0,
- "RETURN FROM fixline ioctl", "", errno);
+ "RETURN FROM fixline ioctl", "", errno);
}
}