1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2024-09-29 04:25:55 -04:00

Fix spelling in debug messages.

svn path=/icecast/trunk/icecast/; revision=8774
This commit is contained in:
Michael Smith 2005-01-21 06:44:21 +00:00
parent df919a9691
commit 533dfb6b0f

View File

@ -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;
}