diff options
author | Bruce Evans <bde@FreeBSD.org> | 1998-07-06 21:01:54 +0000 |
---|---|---|
committer | Bruce Evans <bde@FreeBSD.org> | 1998-07-06 21:01:54 +0000 |
commit | 22694ebad57c49178f28bcc781d8ee9eb5868dd8 (patch) | |
tree | ef3eba30b83841c253ee8676afea71ed9c896f0c /usr.bin/talk/ctl.c | |
parent | b45d09e830251ff82c05a1bdcd1349a94a2a5301 (diff) |
Notes
Diffstat (limited to 'usr.bin/talk/ctl.c')
-rw-r--r-- | usr.bin/talk/ctl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/talk/ctl.c b/usr.bin/talk/ctl.c index 52a986fe011a..f4cdcd111f4b 100644 --- a/usr.bin/talk/ctl.c +++ b/usr.bin/talk/ctl.c @@ -36,7 +36,7 @@ static char sccsid[] = "@(#)ctl.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id$"; + "$Id: ctl.c,v 1.4 1998/01/14 07:20:59 charnier Exp $"; #endif /* not lint */ /* @@ -110,7 +110,7 @@ print_addr(addr) int i; printf("addr = %lx, port = %o, family = %o zero = ", - addr.sin_addr.s_addr, addr.sin_port, addr.sin_family); + (u_long)addr.sin_addr.s_addr, addr.sin_port, addr.sin_family); for (i = 0; i<8;i++) printf("%o ", (int)addr.sin_zero[i]); putchar('\n'); |