]> git.sur5r.net Git - openldap/commitdiff
Clean up some symbol scoping
authorKurt Zeilenga <kurt@openldap.org>
Mon, 24 Dec 2001 06:36:44 +0000 (06:36 +0000)
committerKurt Zeilenga <kurt@openldap.org>
Mon, 24 Dec 2001 06:36:44 +0000 (06:36 +0000)
12 files changed:
libraries/libldap/ldap-int.h
libraries/libldap/os-ip.c
libraries/libldap/result.c
libraries/liblunicode/ure/urestubs.c
libraries/liblutil/ptest.c
servers/slapd/back-bdb/extended.c
servers/slapd/back-bdb/index.c
servers/slapd/backglue.c
servers/slapd/filter.c
servers/slapd/phonetic.c
servers/slapd/proto-slap.h
servers/slapd/schema_prep.c

index e4b4983177330d4206dc6de302fe1e1f0e19b6d2..fc70d9daa8217da5bf5b6d9cfaaeb7bacf935f2c 100644 (file)
@@ -437,7 +437,7 @@ LDAP_F (char *) ldap_host_connected_to( Sockbuf *sb );
 #endif
 
 LDAP_F (void) ldap_int_ip_init( void );
-LDAP_F (int) do_ldap_select( LDAP *ld, struct timeval *timeout );
+LDAP_F (int) ldap_int_select( LDAP *ld, struct timeval *timeout );
 LDAP_F (void *) ldap_new_select_info( void );
 LDAP_F (void) ldap_free_select_info( void *sip );
 LDAP_F (void) ldap_mark_select_write( LDAP *ld, Sockbuf *sb );
index 02006651cbdb7dc2b4bfb94773f628f79a171ecf..23935ad2af8b8c84802b14704e47e434f1b3c270 100644 (file)
@@ -661,11 +661,11 @@ ldap_int_ip_init( void )
 
 
 int
-do_ldap_select( LDAP *ld, struct timeval *timeout )
+ldap_int_select( LDAP *ld, struct timeval *timeout )
 {
        struct selectinfo       *sip;
 
-       Debug( LDAP_DEBUG_TRACE, "do_ldap_select\n", 0, 0, 0 );
+       Debug( LDAP_DEBUG_TRACE, "ldap_int_select\n", 0, 0, 0 );
 
        if ( ldap_int_tblsize == 0 )
                ldap_int_ip_init();
index 6dffb0b192f4f53f7766e3fc225aded11664f073..0e6f4bf80f13b784eeb35a7f29ec49d53a05b6fb 100644 (file)
@@ -272,13 +272,13 @@ wait4msg(
                }
 
                    if ( lc == NULL ) {
-                           rc = do_ldap_select( ld, tvp );
+                           rc = ldap_int_select( ld, tvp );
 
 
 #ifdef LDAP_DEBUG
                            if ( rc == -1 ) {
                                Debug( LDAP_DEBUG_TRACE,
-                                       "do_ldap_select returned -1: errno %d\n",
+                                       "ldap_int_select returned -1: errno %d\n",
                                        errno, 0, 0 );
                            }
 #endif
index bafce091ded6a7dee28aac8d605d11c9e68c8edd..3eaa100e46372256d31f36e7a65f793c6bd7e1b1 100644 (file)
@@ -49,7 +49,7 @@ ucs4_t _ure_tolower(ucs4_t c)
     return uctoupper(c);
 }
 
-static struct maskmap {
+static struct ucmaskmap {
        unsigned long mask1;
        unsigned long mask2;
 } masks[32] = {
index dc972b071f53185d4996fda0fd8fcd2f55b7b288..47ffd92a54103b634b301c5cc58547e3780bee8a 100644 (file)
 
 #include "lutil.h"
 
-// #define SLAP_AUTHPASSWD 1
-
 /*
  * Password Test Program
  */
 
-char *hash[] = {
+static char *hash[] = {
 #ifdef SLAP_AUTHPASSWD
        "SHA1", "MD5",
 #else
index 83ab00ccc4873cdc7ddd234511cbc9bf18f4e714..3af4d650d773fe3f3c939398245dd993be5cf607 100644 (file)
@@ -13,7 +13,7 @@
 #include "back-bdb.h"
 #include "external.h"
 
-struct exop {
+static struct exop {
        char *oid;
        SLAP_EXTENDED_FN        extended;
 } exop_table[] = {
index 816f0abf426b56f12a401c099f8df8afcb0b695b..8daaf8fce2d75245b8bfa4c9a9cc4e689c3e53ef 100644 (file)
@@ -17,7 +17,7 @@
 #include "lutil_hash.h"
 
 static char presence_keyval[LUTIL_HASH_BYTES] = {0,0,0,1};
-struct berval presence_key = {LUTIL_HASH_BYTES, presence_keyval};
+static struct berval presence_key = {LUTIL_HASH_BYTES, presence_keyval};
 
 static slap_mask_t index_mask(
        Backend *be,
index 13cfe7715ac6c9e1eefd35d410f4732aa7eb8e2f..696ed48bb4e5bb54f0efe85665b8d84b3dd95553 100644 (file)
@@ -149,7 +149,7 @@ glue_back_db_close (
        return 0;
 }
 
-int
+static int
 glue_back_db_destroy (
        BackendDB *be
 )
@@ -172,7 +172,7 @@ typedef struct glue_state {
        struct berval **refs;
 } glue_state;
 
-void
+static void
 glue_back_response (
        Connection *conn,
        Operation *op,
@@ -228,7 +228,7 @@ glue_back_response (
        }
 }
 
-void
+static void
 glue_back_sresult (
        Connection *c,
        Operation *op,
@@ -247,7 +247,7 @@ glue_back_sresult (
                            NULL, NULL, NULL, ctrls);
 }
 
-int
+static int
 glue_back_search (
        BackendDB *b0,
        Connection *conn,
@@ -364,7 +364,7 @@ done:
        return rc;
 }
 
-int
+static int
 glue_back_bind (
        BackendDB *b0,
        Connection *conn,
@@ -392,7 +392,7 @@ glue_back_bind (
        return rc;
 }
 
-int
+static int
 glue_back_compare (
        BackendDB *b0,
        Connection *conn,
@@ -417,7 +417,7 @@ glue_back_compare (
        return rc;
 }
 
-int
+static int
 glue_back_modify (
        BackendDB *b0,
        Connection *conn,
@@ -442,7 +442,7 @@ glue_back_modify (
        return rc;
 }
 
-int
+static int
 glue_back_modrdn (
        BackendDB *b0,
        Connection *conn,
@@ -469,7 +469,7 @@ glue_back_modrdn (
        return rc;
 }
 
-int
+static int
 glue_back_add (
        BackendDB *b0,
        Connection *conn,
@@ -492,7 +492,7 @@ glue_back_add (
        return rc;
 }
 
-int
+static int
 glue_back_delete (
        BackendDB *b0,
        Connection *conn,
@@ -516,7 +516,7 @@ glue_back_delete (
        return rc;
 }
 
-int
+static int
 glue_back_release_rw (
        BackendDB *b0,
        Connection *conn,
@@ -539,7 +539,7 @@ glue_back_release_rw (
        return rc;
 }
 
-int
+static int
 glue_back_group (
        BackendDB *b0,
        Connection *conn,
@@ -564,7 +564,7 @@ glue_back_group (
        return rc;
 }
 
-int
+static int
 glue_back_attribute (
        BackendDB *b0,
        Connection *conn,
@@ -588,7 +588,7 @@ glue_back_attribute (
        return rc;
 }
 
-int
+static int
 glue_back_referrals (
        BackendDB *b0,
        Connection *conn,
@@ -611,7 +611,7 @@ glue_back_referrals (
        return rc;
 }
 
-int
+static int
 glue_tool_entry_open (
        BackendDB *b0,
        int mode
@@ -627,7 +627,7 @@ glue_tool_entry_open (
        return 0;
 }
 
-int
+static int
 glue_tool_entry_close (
        BackendDB *b0
 )
@@ -642,7 +642,7 @@ glue_tool_entry_close (
        return rc;
 }
 
-ID
+static ID
 glue_tool_entry_first (
        BackendDB *b0
 )
@@ -667,7 +667,7 @@ glue_tool_entry_first (
        return glueBack->be_entry_first (glueBack);
 }
 
-ID
+static ID
 glue_tool_entry_next (
        BackendDB *b0
 )
@@ -699,7 +699,7 @@ glue_tool_entry_next (
        return rc;
 }
 
-Entry *
+static Entry *
 glue_tool_entry_get (
        BackendDB *b0,
        ID id
@@ -711,7 +711,7 @@ glue_tool_entry_get (
        return glueBack->be_entry_get (glueBack, id);
 }
 
-ID
+static ID
 glue_tool_entry_put (
        BackendDB *b0,
        Entry *e
@@ -742,7 +742,7 @@ glue_tool_entry_put (
        return be->be_entry_put (be, e);
 }
 
-int
+static int
 glue_tool_entry_reindex (
        BackendDB *b0,
        ID id
@@ -754,7 +754,7 @@ glue_tool_entry_reindex (
        return glueBack->be_entry_reindex (glueBack, id);
 }
 
-int
+static int
 glue_tool_sync (
        BackendDB *b0
 )
@@ -769,8 +769,6 @@ glue_tool_sync (
        return 0;
 }
 
-extern int num_subs;   /* config.c */
-
 int
 glue_sub_init( )
 {
index a0d51a4b72015fd06c2de5dda8b847566190bf2e..6c16a68046c464d151b886fdab3f6dd773b6a7e5 100644 (file)
@@ -837,7 +837,7 @@ filter_print( Filter *f )
 
 #endif /* ldap_debug */
 
-int filter_escape_value(
+static int filter_escape_value(
        struct berval *in,
        struct berval *out )
 {
index 4a925383e748c7d8b5b53d67597f7280b9cf7252..0a98e18ac931d9c45310c886acff4d6800f15e99 100644 (file)
@@ -24,7 +24,7 @@
                         ispunct((unsigned char) (x)) || \
                         isdigit((unsigned char) (x)) || (x) == '\0')
 
-char *
+static char *
 first_word( char *s )
 {
        if ( s == NULL ) {
@@ -42,7 +42,7 @@ first_word( char *s )
        return( s );
 }
 
-char *
+static char *
 next_word( char *s )
 {
        if ( s == NULL ) {
@@ -64,7 +64,7 @@ next_word( char *s )
        return( s );
 }
 
-char *
+static char *
 word_dup( char *w )
 {
        char    *s, *ret;
index 1a24bdfc0043127499d985fdd0ecb2e18a3b5d02..d61d63ea73f0be5b4b6a47a512ae0c5dd0cb2a70 100644 (file)
@@ -540,9 +540,6 @@ LDAP_SLAPD_F (Operation *) slap_op_pop LDAP_P(( Operation **olist ));
  * phonetic.c
  */
 
-LDAP_SLAPD_F (char *) first_word LDAP_P(( char *s ));
-LDAP_SLAPD_F (char *) next_word LDAP_P(( char *s ));
-LDAP_SLAPD_F (char *) word_dup LDAP_P(( char *w ));
 LDAP_SLAPD_F (char *) phonetic LDAP_P(( char *s ));
 
 /*
@@ -908,6 +905,8 @@ LDAP_SLAPD_F (Attribute *) slap_operational_hasSubordinate( int has );
 #define SLAP_SB_MAX_INCOMING_DEFAULT ((1<<18) - 1)
 #define SLAP_SB_MAX_INCOMING_AUTH ((1<<24) - 1)
 
+LDAP_SLAPD_V(int) num_subs;
+
 LDAP_SLAPD_V (ber_len_t) sockbuf_max_incoming;
 LDAP_SLAPD_V (ber_len_t) sockbuf_max_incoming_auth;
 
index 34412ba580d09b3b08ba2faa80bd459c89d34936..6bf68492811a7b02d4921e35ca2e7249e4055dea 100644 (file)
@@ -117,13 +117,12 @@ structuralObjectClassMatch(
        Debug( LDAP_DEBUG_TRACE, "structuralObjectClassMatch(%s,%s) = %d\n",
                value->bv_val, a->bv_val, *matchp );
 #endif
-
 #endif
 
        return LDAP_SUCCESS;
 }
 
-struct slap_schema_oc_map {
+static struct slap_schema_oc_map {
        char *ssom_name;
        size_t ssom_offset;
 } oc_map[] = {
@@ -137,7 +136,7 @@ struct slap_schema_oc_map {
        { NULL, 0 }
 };
 
-struct slap_schema_ad_map {
+static struct slap_schema_ad_map {
        char *ssam_name;
        slap_mr_match_func *ssam_match;
        slap_mr_indexer_func *ssam_indexer;
@@ -236,7 +235,7 @@ static AttributeType slap_at_undefined = {
        /* mutex (don't know how to initialize it :) */
 };
 
-struct slap_schema_mr_map {
+static struct slap_schema_mr_map {
        char *ssmm_name;
        size_t ssmm_offset;
 } mr_map[] = {
@@ -247,7 +246,7 @@ struct slap_schema_mr_map {
        { NULL, 0 }
 };
 
-struct slap_schema_syn_map {
+static struct slap_schema_syn_map {
        char *sssm_name;
        size_t sssm_offset;
 } syn_map[] = {