From 25fd9437f122428b5b5367886fab970afb6711fb Mon Sep 17 00:00:00 2001 From: Chris Hanson Date: Sun, 15 Aug 1999 15:25:45 +0000 Subject: [PATCH] Fix typo. --- v7/src/microcode/ntsock.c | 4 ++-- v7/src/microcode/os2sock.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/v7/src/microcode/ntsock.c b/v7/src/microcode/ntsock.c index 6e9da58b0..74a8d4516 100644 --- a/v7/src/microcode/ntsock.c +++ b/v7/src/microcode/ntsock.c @@ -1,6 +1,6 @@ /* -*-C-*- -$Id: ntsock.c,v 1.7 1999/08/13 18:47:52 cph Exp $ +$Id: ntsock.c,v 1.8 1999/08/15 15:25:45 cph Exp $ Copyright (c) 1997-1999 Massachusetts Institute of Technology @@ -162,7 +162,7 @@ const char * OS_get_host_by_address (const char * host_addr) { struct hostent * entry - = (gethostbyaddr (host_addr, , (OS_host_address_length ()), AF_INET)); + = (gethostbyaddr (host_addr, (OS_host_address_length ()), AF_INET)); if (entry == 0) return (0); { diff --git a/v7/src/microcode/os2sock.c b/v7/src/microcode/os2sock.c index e06e4d341..cff618c3c 100644 --- a/v7/src/microcode/os2sock.c +++ b/v7/src/microcode/os2sock.c @@ -1,6 +1,6 @@ /* -*-C-*- -$Id: os2sock.c,v 1.12 1999/08/13 18:47:57 cph Exp $ +$Id: os2sock.c,v 1.13 1999/08/15 15:25:29 cph Exp $ Copyright (c) 1990-1999 Massachusetts Institute of Technology @@ -180,7 +180,7 @@ const char * OS_get_host_by_address (const char * host_addr) { struct hostent * entry - = (gethostbyaddr (host_addr, , (OS_host_address_length ()), AF_INET)); + = (gethostbyaddr (host_addr, (OS_host_address_length ()), AF_INET)); if (entry == 0) return (0); { -- 2.25.1