]> git.sur5r.net Git - openldap/commitdiff
Fix slurpd constification where dependent upon slap.h
authorKurt Zeilenga <kurt@openldap.org>
Fri, 20 Aug 1999 22:24:58 +0000 (22:24 +0000)
committerKurt Zeilenga <kurt@openldap.org>
Fri, 20 Aug 1999 22:24:58 +0000 (22:24 +0000)
servers/slurpd/lock.c
servers/slurpd/proto-slurp.h

index 40c61a25171d2bc41280f96cb0432a61a6c1107b..2a2ea203743863e71265cc8e6757d87c2e50d27f 100644 (file)
@@ -35,8 +35,8 @@
 
 FILE *
 lock_fopen(
-    char       *fname,
-    char       *type,
+    const char *fname,
+    const char *type,
     FILE       **lfp
 )
 {
@@ -90,7 +90,7 @@ lock_fclose(
  */
 int
 acquire_lock(
-    char       *file,
+    const char *file,
     FILE       **rfp,
     FILE       **lfp
 )
@@ -112,7 +112,7 @@ acquire_lock(
  */
 int
 relinquish_lock(
-    char       *file,
+    const char *file,
     FILE       *rfp,
     FILE       *lfp
 )
index 2d314cdd3a0588c87eece32bfdddf74198d219c2..55a860099fd1e6ebaff8a545e3d684f01c7d3299 100644 (file)
@@ -45,10 +45,10 @@ extern struct globals *init_globals LDAP_P((void));
 int do_ldap    LDAP_P((Ri *ri, Re *re, char **errmsg));
 
 /* lock.c */
-FILE *lock_fopen       LDAP_P((char *fname, char *type, FILE **lfp));
+FILE *lock_fopen       LDAP_P((const char *fname, const char *type, FILE **lfp));
 int lock_fclose        LDAP_P((FILE *fp, FILE *lfp));
-int acquire_lock       LDAP_P((char *file, FILE **rfp, FILE **lfp));
-int relinquish_lock    LDAP_P((char *file, FILE *rfp, FILE *lfp));
+int acquire_lock       LDAP_P((const char *file, FILE **rfp, FILE **lfp));
+int relinquish_lock    LDAP_P((const char *file, FILE *rfp, FILE *lfp));
 
 /* reject.c */
 void write_reject      LDAP_P((Ri *ri, Re *re, int lderr, char *errmsg));