mirror of
https://gitlab.xiph.org/xiph/icecast-server.git
synced 2024-10-27 05:10:11 -04:00
Fix spelling in debug messages.
svn path=/icecast/trunk/icecast/; revision=8774
This commit is contained in:
parent
df919a9691
commit
533dfb6b0f
@ -203,7 +203,7 @@ static auth_result htpasswd_auth(auth_t *auth, source_t *source, char *username,
|
||||
|
||||
sep = strchr(line, ':');
|
||||
if(sep == NULL) {
|
||||
DEBUG0("No seperator in line");
|
||||
DEBUG0("No separator in line");
|
||||
continue;
|
||||
}
|
||||
|
||||
@ -286,7 +286,7 @@ int auth_htpasswd_existing_user(auth_t *auth, char *username)
|
||||
continue;
|
||||
sep = strchr(line, ':');
|
||||
if(sep == NULL) {
|
||||
DEBUG0("No seperator in line");
|
||||
DEBUG0("No separator in line");
|
||||
continue;
|
||||
}
|
||||
*sep = 0;
|
||||
@ -384,7 +384,7 @@ int auth_htpasswd_deleteuser(auth_t *auth, char *username)
|
||||
|
||||
sep = strchr(line, ':');
|
||||
if(sep == NULL) {
|
||||
DEBUG0("No seperator in line");
|
||||
DEBUG0("No separator in line");
|
||||
continue;
|
||||
}
|
||||
|
||||
@ -463,7 +463,7 @@ int auth_get_htpasswd_userlist(auth_t *auth, xmlNodePtr srcnode)
|
||||
|
||||
sep = strchr(line, ':');
|
||||
if(sep == NULL) {
|
||||
DEBUG0("No seperator in line");
|
||||
DEBUG0("No separator in line");
|
||||
continue;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user