]> git.sur5r.net Git - openldap/commitdiff
Add missing "static" for functions declared static but defined non-static
authorHallvard Furuseth <hallvard@openldap.org>
Mon, 18 Jul 2005 05:14:41 +0000 (05:14 +0000)
committerHallvard Furuseth <hallvard@openldap.org>
Mon, 18 Jul 2005 05:14:41 +0000 (05:14 +0000)
libraries/libldap/getdn.c
servers/slapd/controls.c
servers/slapd/daemon.c
servers/slapd/syncrepl.c

index ca45d8247fe110e373c212773a6d4cb68acfe3ed..79c49e0470caea8ae85702aec7ec292418026de6 100644 (file)
@@ -557,7 +557,7 @@ ldap_dn_normalize( LDAP_CONST char *dnin,
  * LDAPAVA helpers (will become part of the API for operations 
  * on structural representations of DNs).
  */
-LDAPAVA *
+static LDAPAVA *
 ldapava_new( const struct berval *attr, const struct berval *val, 
                unsigned flags, void *ctx )
 {
index 7f14f1fd6211713e544d1fd19db086b2a67fe85e..81ae77143ae0e6d897799df1b6137e71480c96dd 100644 (file)
@@ -1192,7 +1192,7 @@ static int parsePostRead (
        return LDAP_SUCCESS;
 }
 
-int parseValuesReturnFilter (
+static int parseValuesReturnFilter (
        Operation *op,
        SlapReply *rs,
        LDAPControl *ctrl )
index 608e07e5f1b1d9674e81526c490ab7e3093077a0..161de6edb52c7ddecf2a2bfbab07a323fb17394f 100644 (file)
@@ -2063,7 +2063,7 @@ int slapd_daemon( void )
 
 }
 
-int sockinit(void)
+static int sockinit(void)
 {
 #if defined( HAVE_WINSOCK2 )
     WORD wVersionRequested;
@@ -2104,7 +2104,7 @@ int sockinit(void)
        return 0;
 }
 
-int sockdestroy(void)
+static int sockdestroy(void)
 {
 #if defined( HAVE_WINSOCK2 ) || defined( HAVE_WINSOCK )
        WSACleanup();
index f2f56a5e859f6e9b491b91d062f56326839e73a2..6c23bc9cbf761053b50f15b72d9b85bb95b3b2a2 100644 (file)
@@ -1022,7 +1022,7 @@ do_syncrepl(
        return NULL;
 }
 
-int
+static int
 syncrepl_message_to_entry(
        syncinfo_t      *si,
        Operation       *op,
@@ -1193,7 +1193,7 @@ typedef struct dninfo {
        AttributeDescription **ads;
 } dninfo;
 
-int
+static int
 syncrepl_entry(
        syncinfo_t* si,
        Operation *op,
@@ -1858,7 +1858,7 @@ syncrepl_add_glue(
        return;
 }
 
-void
+static void
 syncrepl_updateCookie(
        syncinfo_t *si,
        Operation *op,
@@ -2072,7 +2072,7 @@ null_callback(
        return LDAP_SUCCESS;
 }
 
-struct berval *
+static struct berval *
 slap_uuidstr_from_normalized(
        struct berval* uuidstr,
        struct berval* normalized,