This commit is contained in:
Kurt Zeilenga 2005-07-09 18:57:10 +00:00
parent c8520d2b7d
commit 570126dc25
2 changed files with 3 additions and 5 deletions

View file

@ -40,8 +40,7 @@
FILE *
ldif_open_url(
LDAP_CONST char *urlstr
)
LDAP_CONST char *urlstr )
{
FILE *url;
char *p = NULL;
@ -76,8 +75,7 @@ int
ldif_fetch_url(
LDAP_CONST char *urlstr,
char **valuep,
ber_len_t *vlenp
)
ber_len_t *vlenp )
{
FILE *url;
char buffer[1024];

View file

@ -206,7 +206,7 @@ static const struct pw_scheme *get_scheme(
return NULL;
bv.bv_len = bv.bv_val - scheme + 1;
bv.bv_val = scheme;
bv.bv_val = (char *) scheme;
for( pws=pw_schemes; pws; pws=pws->next ) {
if( bv.bv_len != pws->s.name.bv_len )