From 4bcecfb75306716baf2f70e2afeb908b3f2c9c75 Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Mon, 17 Dec 2007 21:22:17 +0000 Subject: * inet/ether_line.c (ether_line): Remove unused variable. 2007-12-17 Samuel Thibault * 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. --- login/forkpty.c | 4 ++-- login/openpty.c | 4 ++-- login/pty.h | 6 ++++-- 3 files changed, 8 insertions(+), 6 deletions(-) (limited to 'login') diff --git a/login/forkpty.c b/login/forkpty.c index ccd5dbfe0e..482aebcb28 100644 --- a/login/forkpty.c +++ b/login/forkpty.c @@ -27,8 +27,8 @@ int forkpty (amaster, name, termp, winp) int *amaster; char *name; - struct termios *termp; - struct winsize *winp; + const struct termios *termp; + const struct winsize *winp; { int master, slave, pid; 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]; diff --git a/login/pty.h b/login/pty.h index 2d4b5e270f..a2ed77d58d 100644 --- a/login/pty.h +++ b/login/pty.h @@ -32,12 +32,14 @@ __BEGIN_DECLS attributes according to TERMP and WINP and return handles for both ends in AMASTER and ASLAVE. */ extern int openpty (int *__amaster, int *__aslave, char *__name, - struct termios *__termp, struct winsize *__winp) __THROW; + const struct termios *__termp, + const struct winsize *__winp) __THROW; /* Create child process and establish the slave pseudo terminal as the child's controlling terminal. */ extern int forkpty (int *__amaster, char *__name, - struct termios *__termp, struct winsize *__winp) __THROW; + const struct termios *__termp, + const struct winsize *__winp) __THROW; __END_DECLS -- cgit v1.2.3