summaryrefslogtreecommitdiffstats
path: root/libutil
diff options
context:
space:
mode:
authorPaul Traina <pst@FreeBSD.org>1997-09-04 22:38:59 +0000
committerPaul Traina <pst@FreeBSD.org>1997-09-04 22:38:59 +0000
commit317540b0f1730853e25e58143fc582b824472789 (patch)
tree9b2a5d620965065ae10986f49761a743f5624c13 /libutil
parent6ff0675062679b8c2585d74efd11857c2ecc3140 (diff)
downloadpw-darwin-317540b0f1730853e25e58143fc582b824472789.tar.gz
pw-darwin-317540b0f1730853e25e58143fc582b824472789.tar.zst
pw-darwin-317540b0f1730853e25e58143fc582b824472789.zip
The parameters to logwtmp should be const char's
Diffstat (limited to 'libutil')
-rw-r--r--libutil/libutil.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libutil/libutil.h b/libutil/libutil.h
index 62b308b..8a96284 100644
--- a/libutil/libutil.h
+++ b/libutil/libutil.h
@@ -18,7 +18,7 @@
* 5. Modifications may be freely made to this file providing the above
* conditions are met.
*
- * $Id: libutil.h,v 1.11 1997/08/27 20:06:19 brian Exp $
+ * $Id: libutil.h,v 1.12 1997/08/31 20:09:38 brian Exp $
*/
#ifndef _LIBUTIL_H_
@@ -36,7 +36,7 @@ void setproctitle __P((const char *_fmt, ...));
void login __P((struct utmp *_ut));
int login_tty __P((int _fd));
int logout __P((char *_line));
-void logwtmp __P((char *_line, char *_name, char *_host));
+void logwtmp __P((const char *_line, const char *_name, const char *_host));
int openpty __P((int *_amaster, int *_aslave, char *_name,
struct termios *_termp, struct winsize *_winp));
int forkpty __P((int *_amaster, char *_name,