From cd8382674dbb50019650da6789daeaf93abf79ec Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Thu, 13 Jan 2011 18:40:48 +0100 Subject: [PATCH] auth: add realm to make it more spec compliant --- gst/rtsp-server/rtsp-auth.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/rtsp-server/rtsp-auth.c b/gst/rtsp-server/rtsp-auth.c index 84d5c546a9..e01315ccdb 100644 --- a/gst/rtsp-server/rtsp-auth.c +++ b/gst/rtsp-server/rtsp-auth.c @@ -147,7 +147,7 @@ default_setup_auth (GstRTSPAuth * auth, GstRTSPClient * client, /* we only have Basic for now */ gst_rtsp_message_add_header (state->response, GST_RTSP_HDR_WWW_AUTHENTICATE, - "Basic "); + "Basic realm=\"GStreamer RTSP Server\""); return TRUE; }