From 1fb972cf89d2c1e0e039804abab9aaa67a1e1b4e Mon Sep 17 00:00:00 2001 From: Michael Smith Date: Sat, 18 Jan 2003 07:39:29 +0000 Subject: [PATCH] And some more message fixes (this and the previous from alet@librelogiciel.com (Jerome Alet) svn path=/trunk/icecast/; revision=4262 --- src/connection.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/connection.c b/src/connection.c index 593ac003..4918d17d 100644 --- a/src/connection.c +++ b/src/connection.c @@ -589,7 +589,7 @@ static void _handle_get_request(connection_t *con, /* there are several types of HTTP GET clients ** media clients, which are looking for a source (eg, URI = /stream.ogg) - ** stats clients, which are looking for /stats.xml + ** stats clients, which are looking for /admin/stats.xml ** and director server authorizers, which are looking for /GUID-xxxxxxxx ** (where xxxxxx is the GUID in question) - this isn't implemented yet. ** we need to handle the latter two before the former, as the latter two @@ -598,7 +598,7 @@ static void _handle_get_request(connection_t *con, /* TODO: add GUID-xxxxxx */ if (strcmp(uri, "/admin/stats.xml") == 0) { if (!_check_source_pass(parser)) { - INFO0("Request for stats.xml with incorrect or no password"); + INFO0("Request for /admin/stats.xml with incorrect or no password"); client_send_401(client); return; }