From 1ad457716c86d180d4612223e44201ebca19a0bf Mon Sep 17 00:00:00 2001 From: Stefan Ritt Date: Tue, 9 Jul 2002 07:31:13 +0000 Subject: [PATCH] Removed alphasort() for Solaris compatibility SVN revision: 170 --- elogd.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/elogd.c b/elogd.c index 6aaa4f4e..a00496b2 100755 --- a/elogd.c +++ b/elogd.c @@ -6,6 +6,9 @@ Contents: Web server program for Electronic Logbook ELOG $Log$ + Revision 2.40 2002/07/09 07:31:13 midas + Removed alphasort() for Solaris compatibility + Revision 2.39 2002/07/09 07:22:12 midas Fixed bug in error display on save config file @@ -1372,7 +1375,7 @@ INT ss_file_find(char *path, char *pattern, char **plist) int i, j, n; struct dirent **namelist; - n = scandir(path, &namelist, 0, alphasort); + n = scandir(path, &namelist, NULL, NULL); if (n <= 0) return 0;