diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2001-07-08 21:18:14 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2001-07-08 21:18:14 +0000 |
commit | 699c4ce680db1fb49447b9e177bccaa2b451e33c (patch) | |
tree | 5abc4259a7dcc07ab250be730cfe703ce01ffaaf /libexec/talkd/talkd.c | |
parent | dc7875ea2fd93df64c33fcce973754bcd62b2343 (diff) |
-Wall
Diffstat (limited to 'libexec/talkd/talkd.c')
-rw-r--r-- | libexec/talkd/talkd.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libexec/talkd/talkd.c b/libexec/talkd/talkd.c index 93016cd74ba..01c960238a3 100644 --- a/libexec/talkd/talkd.c +++ b/libexec/talkd/talkd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: talkd.c,v 1.8 2001/01/11 22:07:44 deraadt Exp $ */ +/* $OpenBSD: talkd.c,v 1.9 2001/07/08 21:18:12 deraadt Exp $ */ /* * Copyright (c) 1983 Regents of the University of California. @@ -41,7 +41,7 @@ char copyright[] = #ifndef lint /*static char sccsid[] = "from: @(#)talkd.c 5.8 (Berkeley) 2/26/91";*/ -static char rcsid[] = "$Id: talkd.c,v 1.8 2001/01/11 22:07:44 deraadt Exp $"; +static char rcsid[] = "$Id: talkd.c,v 1.9 2001/07/08 21:18:12 deraadt Exp $"; #endif /* not lint */ /* @@ -75,6 +75,7 @@ char hostname[MAXHOSTNAMELEN]; #define TIMEOUT 30 #define MAXIDLE 120 +int main(argc, argv) int argc; char *argv[]; |