about summary refs log tree commit diff
path: root/login/openpty.c
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2007-12-17 21:22:17 +0000
committerRoland McGrath <roland@gnu.org>2007-12-17 21:22:17 +0000
commit4bcecfb75306716baf2f70e2afeb908b3f2c9c75 (patch)
tree5a55d57ab8c5c629fc0cc694a3063174bee0db6b /login/openpty.c
parente42976314d641cb26e87f6fb994b21f2c68437a8 (diff)
downloadglibc-4bcecfb75306716baf2f70e2afeb908b3f2c9c75.tar.gz
glibc-4bcecfb75306716baf2f70e2afeb908b3f2c9c75.tar.xz
glibc-4bcecfb75306716baf2f70e2afeb908b3f2c9c75.zip
* inet/ether_line.c (ether_line): Remove unused variable.
2007-12-17  Samuel Thibault  <samuel.thibault@ens-lyon.org>

	* login/forkpty.c (forkpty): Add const qualifier to parameters termp
	and winp.
	* login/openpty.c (openpty): Likewise.
	* login/pty.h (openpty, forkpty): Likewise.
	* manual/terminal.texi (openpty, forkpty): Likewise.
Diffstat (limited to 'login/openpty.c')
-rw-r--r--login/openpty.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/login/openpty.c b/login/openpty.c
index fe11d49feb..0ff901c3f5 100644
--- a/login/openpty.c
+++ b/login/openpty.c
@@ -84,8 +84,8 @@ pts_name (int fd, char **pts, size_t buf_len)
    according to TERMP and WINP.  Return handles for both ends in
    AMASTER and ASLAVE, and return the name of the slave end in NAME.  */
 int
-openpty (int *amaster, int *aslave, char *name, struct termios *termp,
-	 struct winsize *winp)
+openpty (int *amaster, int *aslave, char *name,
+	 const struct termios *termp, const struct winsize *winp)
 {
 #ifdef PATH_MAX
   char _buf[PATH_MAX];