]> git.sur5r.net Git - openldap/commitdiff
Rename getline to avoid stdio conflict
authorHoward Chu <hyc@openldap.org>
Thu, 10 Nov 2005 21:25:01 +0000 (21:25 +0000)
committerHoward Chu <hyc@openldap.org>
Thu, 10 Nov 2005 21:25:01 +0000 (21:25 +0000)
servers/slurpd/config.c

index 6fe2e4035e92b3a418d1a7f47551907202a6cfc5..be39480cf50da4ab310f65b03f5a430cd0f1ad79 100644 (file)
@@ -58,7 +58,7 @@
 static void    add_replica LDAP_P(( char **, int ));
 static int     parse_replica_line LDAP_P(( char **, int, Ri *));
 static void    parse_line LDAP_P(( char * ));
-static char    *getline LDAP_P(( FILE * ));
+static char    *slurpd_getline LDAP_P(( FILE * ));
 static char    *strtok_quote LDAP_P(( char *, char * ));
 
 int    cargc = 0, cargv_size = 0;
@@ -96,7 +96,7 @@ slurpd_read_config(
     }
 
     lineno = 0;
-    while ( (line = getline( fp )) != NULL ) {
+    while ( (line = slurpd_getline( fp )) != NULL ) {
        /* skip comments and blank lines */
        if ( line[0] == '#' || line[0] == '\0' ) {
            continue;
@@ -321,7 +321,7 @@ strtok_quote(
  * Get a line of input.
  */
 static char *
-getline(
+slurpd_getline(
     FILE *fp
 )
 {