From f9d40109ef924bf5014125d7368ebe850c1b291c Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Henrik=20Grubbstr=C3=B6m=20=28Grubba=29?=
 <grubba@grubba.org>
Date: Sat, 25 Jan 1997 18:00:51 +0100
Subject: [PATCH] Fixed some typos

Rev: src/modules/system/system.c:1.6
---
 src/modules/system/system.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/modules/system/system.c b/src/modules/system/system.c
index 707f51694f..36b331b90b 100644
--- a/src/modules/system/system.c
+++ b/src/modules/system/system.c
@@ -1,5 +1,5 @@
 /*
- * $Id: system.c,v 1.5 1997/01/22 10:21:32 grubba Exp $
+ * $Id: system.c,v 1.6 1997/01/25 17:00:51 grubba Exp $
  *
  * System-call module for Pike
  *
@@ -13,7 +13,7 @@
 #include "system_machine.h"
 
 #include <global.h>
-RCSID("$Id: system.c,v 1.5 1997/01/22 10:21:32 grubba Exp $");
+RCSID("$Id: system.c,v 1.6 1997/01/25 17:00:51 grubba Exp $");
 #include <module_support.h>
 #include <las.h>
 #include <interpret.h>
@@ -532,7 +532,7 @@ static MUTEX_T gethostbyname_mutex;
 
 #define GETHOST_DECLARE() struct hostent *ret
 
-#defne CALL_GETHOSTBYNAME(X) \
+#define CALL_GETHOSTBYNAME(X) \
     THREADS_ALLOW(); \
     mt_lock(&gethostbyname_mutex); \
     ret=gethostbyname(X); \
@@ -540,7 +540,7 @@ static MUTEX_T gethostbyname_mutex;
     THREADS_DISALLOW()
 
 
-#defne CALL_GETHOSTBYADDR(X,Y,Z) \
+#define CALL_GETHOSTBYADDR(X,Y,Z) \
     THREADS_ALLOW(); \
     mt_lock(&gethostbyname_mutex); \
     ret=gethostbyaddr((X),(Y),(Z)); \
-- 
GitLab