From 380bf50ad156f95efdd17c517c9a72bfb7cb58a4 Mon Sep 17 00:00:00 2001
From: Martin Stjernholm <mast@lysator.liu.se>
Date: Thu, 16 Mar 2000 03:30:10 +0100
Subject: [PATCH] Fixed typo in error string.

Rev: src/modules/system/system.c:1.83
---
 src/modules/system/system.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/modules/system/system.c b/src/modules/system/system.c
index df38f44ba5..41ad75e4f5 100644
--- a/src/modules/system/system.c
+++ b/src/modules/system/system.c
@@ -1,5 +1,5 @@
 /*
- * $Id: system.c,v 1.82 2000/01/17 02:34:04 hubbe Exp $
+ * $Id: system.c,v 1.83 2000/03/16 02:30:10 mast Exp $
  *
  * System-call module for Pike
  *
@@ -15,7 +15,7 @@
 #include "system_machine.h"
 #include "system.h"
 
-RCSID("$Id: system.c,v 1.82 2000/01/17 02:34:04 hubbe Exp $");
+RCSID("$Id: system.c,v 1.83 2000/03/16 02:30:10 mast Exp $");
 #ifdef HAVE_WINSOCK_H
 #include <winsock.h>
 #endif
@@ -136,7 +136,7 @@ static void report_error(const char *function_name)
     break;
 #ifdef ELOOP
   case ELOOP:
-    error_msg = "Do deep nesting of symlinks";
+    error_msg = "Too deep nesting of symlinks";
     break;
 #endif /* ELOOP */
 #ifdef EMLINK
-- 
GitLab