mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-28 10:39:34 -05:00
silence warnings
This commit is contained in:
parent
8d0d4fd8f4
commit
7aeac21440
13 changed files with 30 additions and 28 deletions
|
|
@ -604,18 +604,18 @@ lutil_atoulx( unsigned long *v, const char *s, int x )
|
|||
}
|
||||
|
||||
/* Multiply an integer by 100000000 and add new */
|
||||
typedef struct _decnum {
|
||||
typedef struct lutil_int_decnum {
|
||||
unsigned char *buf;
|
||||
int bufsiz;
|
||||
int beg;
|
||||
int len;
|
||||
} _decnum;
|
||||
} lutil_int_decnum;
|
||||
|
||||
#define FACTOR1 (100000000&0xffff)
|
||||
#define FACTOR2 (100000000>>16)
|
||||
|
||||
static void
|
||||
scale( int new, _decnum *prev, unsigned char *tmp )
|
||||
scale( int new, lutil_int_decnum *prev, unsigned char *tmp )
|
||||
{
|
||||
int i, j;
|
||||
unsigned char *in = prev->buf+prev->beg;
|
||||
|
|
@ -726,12 +726,12 @@ lutil_str2bin( struct berval *in, struct berval *out )
|
|||
} else {
|
||||
/* Decimal */
|
||||
char tmpbuf[64], *tmp;
|
||||
_decnum num;
|
||||
lutil_int_decnum num;
|
||||
int neg = 0;
|
||||
|
||||
len = in->bv_len;
|
||||
pin = in->bv_val;
|
||||
num.buf = out->bv_val;
|
||||
num.buf = (unsigned char *)out->bv_val;
|
||||
num.bufsiz = out->bv_len;
|
||||
num.beg = num.bufsiz-1;
|
||||
num.len = 0;
|
||||
|
|
@ -762,7 +762,7 @@ lutil_str2bin( struct berval *in, struct berval *out )
|
|||
rc = -1;
|
||||
goto decfail;
|
||||
}
|
||||
scale( l, &num, tmp );
|
||||
scale( l, &num, (unsigned char *)tmp );
|
||||
pin += chunk;
|
||||
len -= chunk;
|
||||
chunk = DECMAX;
|
||||
|
|
|
|||
|
|
@ -318,9 +318,8 @@ attr_valfind(
|
|||
}
|
||||
|
||||
if ( a->a_flags & SLAP_ATTR_SORTED_VALS ) {
|
||||
/* Binary search */
|
||||
/* Binary search */
|
||||
unsigned base = 0, n = a->a_numvals;
|
||||
int val = 0;
|
||||
|
||||
while ( 0 < n ) {
|
||||
unsigned pivot = n >> 1;
|
||||
|
|
|
|||
|
|
@ -139,7 +139,7 @@ bdb_db_cache(
|
|||
if( rc != 0 ) {
|
||||
Debug( LDAP_DEBUG_ANY,
|
||||
"bdb_db_cache: db_open(%s) failed: %s (%d)\n",
|
||||
name, db_strerror(rc), rc );
|
||||
name->bv_val, db_strerror(rc), rc );
|
||||
ldap_pvt_thread_mutex_unlock( &bdb->bi_database_mutex );
|
||||
return rc;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1325,7 +1325,7 @@ idassert-authzFrom "dn:<rootdn>"
|
|||
|
||||
if ( BER_BVISNULL( &be->be_nsuffix[ c ] ) ) {
|
||||
Debug( LDAP_DEBUG_ANY, "%s: line %d: "
|
||||
"%s: line %d: <suffix> \"%s\" must be within the database naming context, in "
|
||||
"<suffix> \"%s\" must be within the database naming context, in "
|
||||
"\"suffixMassage <suffix> <massaged suffix>\"\n",
|
||||
fname, lineno, pvnc.bv_val );
|
||||
free( pvnc.bv_val );
|
||||
|
|
|
|||
|
|
@ -867,7 +867,7 @@ meta_back_get_candidate(
|
|||
op2.ors_slimit = 1;
|
||||
op2.ors_tlimit = SLAP_NO_LIMIT;
|
||||
|
||||
op2.ors_filter = slap_filter_objectClass_pres;
|
||||
op2.ors_filter = (Filter *)slap_filter_objectClass_pres;
|
||||
op2.ors_filterstr = *slap_filterstr_objectClass_pres;
|
||||
|
||||
op2.o_callback = &cb2;
|
||||
|
|
|
|||
|
|
@ -266,12 +266,6 @@ typedef struct backsql_api {
|
|||
struct backsql_api *ba_next;
|
||||
} backsql_api;
|
||||
|
||||
#ifdef BACKSQL_ARBITRARY_KEY
|
||||
#define BACKSQL_ENTRYID_INIT { BER_BVNULL, BER_BVNULL, 0, BER_BVNULL, BER_BVNULL, NULL }
|
||||
#else /* ! BACKSQL_ARBITRARY_KEY */
|
||||
#define BACKSQL_ENTRYID_INIT { 0, 0, 0, BER_BVNULL, BER_BVNULL, NULL }
|
||||
#endif /* BACKSQL_ARBITRARY_KEY */
|
||||
|
||||
/*
|
||||
* "structural" objectClass mapping structure
|
||||
*/
|
||||
|
|
@ -398,6 +392,12 @@ typedef struct backsql_entryID {
|
|||
struct backsql_entryID *eid_next;
|
||||
} backsql_entryID;
|
||||
|
||||
#ifdef BACKSQL_ARBITRARY_KEY
|
||||
#define BACKSQL_ENTRYID_INIT { BER_BVNULL, BER_BVNULL, 0, NULL, BER_BVNULL, BER_BVNULL, NULL }
|
||||
#else /* ! BACKSQL_ARBITRARY_KEY */
|
||||
#define BACKSQL_ENTRYID_INIT { 0, 0, 0, NULL, BER_BVNULL, BER_BVNULL, NULL }
|
||||
#endif /* BACKSQL_ARBITRARY_KEY */
|
||||
|
||||
/* the function must collect the entry associated to nbase */
|
||||
#define BACKSQL_ISF_GET_ID 0x1U
|
||||
#define BACKSQL_ISF_GET_ENTRY ( 0x2U | BACKSQL_ISF_GET_ID )
|
||||
|
|
|
|||
|
|
@ -293,7 +293,6 @@ static int
|
|||
backsql_tree_delete_search_cb( Operation *op, SlapReply *rs )
|
||||
{
|
||||
if ( rs->sr_type == REP_SEARCH ) {
|
||||
backsql_info *bi = (backsql_info*)op->o_bd->be_private;
|
||||
backsql_tree_delete_t *btd;
|
||||
backsql_entryID *eid;
|
||||
|
||||
|
|
@ -367,7 +366,7 @@ backsql_tree_delete(
|
|||
op2.ors_deref = LDAP_DEREF_NEVER;
|
||||
op2.ors_slimit = SLAP_NO_LIMIT;
|
||||
op2.ors_tlimit = SLAP_NO_LIMIT;
|
||||
op2.ors_filter = slap_filter_objectClass_pres;
|
||||
op2.ors_filter = (Filter *)slap_filter_objectClass_pres;
|
||||
op2.ors_filterstr = *slap_filterstr_objectClass_pres;
|
||||
op2.ors_attrs = slap_anlist_all_attributes;
|
||||
op2.ors_attrsonly = 0;
|
||||
|
|
@ -403,7 +402,6 @@ clean:;
|
|||
int
|
||||
backsql_delete( Operation *op, SlapReply *rs )
|
||||
{
|
||||
backsql_info *bi = (backsql_info*)op->o_bd->be_private;
|
||||
SQLHDBC dbh = SQL_NULL_HDBC;
|
||||
SQLHSTMT sth = SQL_NULL_HSTMT;
|
||||
backsql_oc_map_rec *oc = NULL;
|
||||
|
|
|
|||
|
|
@ -69,7 +69,7 @@ modify_add_values(
|
|||
if ( a != NULL ) {
|
||||
MatchingRule *mr;
|
||||
struct berval *cvals;
|
||||
int rc, i, j, p;
|
||||
int rc, i, p;
|
||||
unsigned flags;
|
||||
|
||||
mr = mod->sm_desc->ad_type->sat_equality;
|
||||
|
|
|
|||
|
|
@ -224,6 +224,7 @@ auditlog_db_destroy(
|
|||
return 0;
|
||||
}
|
||||
|
||||
#if 0
|
||||
static int
|
||||
auditlog_config(
|
||||
BackendDB *be,
|
||||
|
|
@ -249,6 +250,7 @@ auditlog_config(
|
|||
}
|
||||
return SLAP_CONF_UNKNOWN;
|
||||
}
|
||||
#endif /* 0 */
|
||||
|
||||
int auditlog_initialize() {
|
||||
int rc;
|
||||
|
|
|
|||
|
|
@ -2015,6 +2015,9 @@ pcache_op_cleanup( Operation *op, SlapReply *rs ) {
|
|||
case PC_SIZELIMIT:
|
||||
qc->q_sizelimit = rs->sr_nentries;
|
||||
break;
|
||||
default:
|
||||
assert( 0 );
|
||||
break;
|
||||
}
|
||||
ldap_pvt_thread_rdwr_wunlock(&qc->rwlock);
|
||||
ldap_pvt_thread_mutex_lock(&cm->cache_mutex);
|
||||
|
|
|
|||
|
|
@ -742,9 +742,10 @@ slap_send_search_entry( Operation *op, SlapReply *rs )
|
|||
}
|
||||
|
||||
/* Every 64 entries, check for thread pool pause */
|
||||
if (( rs->sr_nentries & 0x3f == 0x3f ) &&
|
||||
if ( ( ( rs->sr_nentries & 0x3f ) == 0x3f ) &&
|
||||
ldap_pvt_thread_pool_query( &connection_pool,
|
||||
LDAP_PVT_THREAD_POOL_PARAM_PAUSING, &i ) == 0 && i ) {
|
||||
LDAP_PVT_THREAD_POOL_PARAM_PAUSING, &i ) == 0 && i )
|
||||
{
|
||||
return LDAP_BUSY;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -2208,7 +2208,7 @@ integerFilter(
|
|||
struct berval iv;
|
||||
BerVarray keys;
|
||||
struct berval *value;
|
||||
int i, rc;
|
||||
int rc;
|
||||
|
||||
if ( !index_intlen ) {
|
||||
return octetStringFilter( use, flags, syntax, mr,
|
||||
|
|
@ -3081,7 +3081,6 @@ serialNumberAndIssuerNormalize(
|
|||
char sbuf[64], *stmp = sbuf;
|
||||
int rc;
|
||||
ber_len_t n;
|
||||
int is_hex = 0;
|
||||
|
||||
assert( in != NULL );
|
||||
assert( out != NULL );
|
||||
|
|
@ -3132,10 +3131,11 @@ serialNumberAndIssuerNormalize(
|
|||
AC_MEMCPY( &out->bv_val[n], sn.bv_val, sn.bv_len );
|
||||
{
|
||||
int j;
|
||||
unsigned char *v = sn2.bv_val;
|
||||
unsigned char *v = (unsigned char *)sn2.bv_val;
|
||||
out->bv_val[n++] = '\'';
|
||||
for ( j = 0; j < sn2.bv_len; j++ ) {
|
||||
sprintf( &out->bv_val[n], "%02X", v[j] );
|
||||
snprintf( &out->bv_val[n], out->bv_len - n + 1,
|
||||
"%02X", v[j] );
|
||||
n += 2;
|
||||
}
|
||||
out->bv_val[n++] = '\'';
|
||||
|
|
|
|||
|
|
@ -2153,7 +2153,6 @@ int slapi_attr_value_cmp( const Slapi_Attr *a, const struct berval *v1, const st
|
|||
int slapi_attr_value_find( const Slapi_Attr *a, struct berval *v )
|
||||
{
|
||||
int rc;
|
||||
int ret;
|
||||
|
||||
if ( a ->a_vals == NULL ) {
|
||||
return -1;
|
||||
|
|
|
|||
Loading…
Reference in a new issue