Skip to content
Snippets Groups Projects
Commit 40a7c0d7 authored by Martin Stjernholm's avatar Martin Stjernholm
Browse files

Fixed typo causing undefined symbol when getgrgid but no other getgr*

exists.

Rev: src/modules/system/passwords.c:1.25
parent d561d68f
No related branches found
No related tags found
No related merge requests found
/* /*
* $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. * Password handling for Pike.
* *
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
#include "system_machine.h" #include "system_machine.h"
#include "system.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 "module_support.h"
#include "interpret.h" #include "interpret.h"
...@@ -147,7 +147,7 @@ void push_pwent(struct passwd *ent) ...@@ -147,7 +147,7 @@ void push_pwent(struct passwd *ent)
} }
#endif #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) void push_grent(struct group *ent)
{ {
if(!ent) if(!ent)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment