diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1996-04-29 00:46:57 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1996-04-29 00:46:57 +0000 |
commit | 7a240a2945b175510577f64876db187d931830f5 (patch) | |
tree | 81480ad9df07fee372b5031cf3cbce96cd380e36 /libexec | |
parent | e5ea312181cac2e4cf621fbc8e2ca96fb8a1ab0e (diff) |
add missed satosin().
Diffstat (limited to 'libexec')
-rw-r--r-- | libexec/talkd/process.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/libexec/talkd/process.c b/libexec/talkd/process.c index a6dcbda2003..809477956a4 100644 --- a/libexec/talkd/process.c +++ b/libexec/talkd/process.c @@ -1,4 +1,4 @@ -/* $OpenBSD: process.c,v 1.2 1996/04/28 23:56:20 mickey Exp $ */ +/* $OpenBSD: process.c,v 1.3 1996/04/29 00:46:56 mickey Exp $ */ /* * Copyright (c) 1983 Regents of the University of California. @@ -35,7 +35,7 @@ #ifndef lint /*static char sccsid[] = "from: @(#)process.c 5.10 (Berkeley) 2/26/91";*/ -static char rcsid[] = "$Id: process.c,v 1.2 1996/04/28 23:56:20 mickey Exp $"; +static char rcsid[] = "$Id: process.c,v 1.3 1996/04/29 00:46:56 mickey Exp $"; #endif /* not lint */ /* @@ -59,6 +59,8 @@ static char rcsid[] = "$Id: process.c,v 1.2 1996/04/28 23:56:20 mickey Exp $"; #include <paths.h> #include "talkd.h" +#define satosin(sa) ((struct sockaddr_in *)(sa)) + void process_request(mp, rp) register CTL_MSG *mp; |