From 40a7c0d70bcf6a3ae063e338a780591a9b32d426 Mon Sep 17 00:00:00 2001
From: Martin Stjernholm <mast@lysator.liu.se>
Date: Mon, 8 Mar 1999 06:42:26 +0100
Subject: [PATCH] Fixed typo causing undefined symbol when getgrgid but no
 other getgr* exists.

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

diff --git a/src/modules/system/passwords.c b/src/modules/system/passwords.c
index 0170ffdf70..0ad8caccaf 100644
--- a/src/modules/system/passwords.c
+++ b/src/modules/system/passwords.c
@@ -1,5 +1,5 @@
 /*
- * $Id: passwords.c,v 1.24 1999/02/10 21:55:28 hubbe Exp $
+ * $Id: passwords.c,v 1.25 1999/03/08 05:42:26 mast Exp $
  *
  * Password handling for Pike.
  *
@@ -22,7 +22,7 @@
 #include "system_machine.h"
 #include "system.h"
 
-RCSID("$Id: passwords.c,v 1.24 1999/02/10 21:55:28 hubbe Exp $");
+RCSID("$Id: passwords.c,v 1.25 1999/03/08 05:42:26 mast Exp $");
 
 #include "module_support.h"
 #include "interpret.h"
@@ -147,7 +147,7 @@ void push_pwent(struct passwd *ent)
 }
 #endif
 
-#if defined(HAVE_GETGRNAM) || defined(HAVE_GETGRUID) || defined(HAVE_GETGRENT)
+#if defined(HAVE_GETGRNAM) || defined(HAVE_GETGRGID) || defined(HAVE_GETGRENT)
 void push_grent(struct group *ent)
 {
   if(!ent)
-- 
GitLab