[xiph-commits] r9605 - trunk/vorbis-tools/ogg123

giles at svn.xiph.org giles at svn.xiph.org
Sat Jul 23 13:31:17 PDT 2005


Author: giles
Date: 2005-07-23 13:31:16 -0700 (Sat, 23 Jul 2005)
New Revision: 9605

Modified:
   trunk/vorbis-tools/ogg123/http_transport.c
Log:
Correct a typo in the ogg+flac Accepts: HTTP header sent by ogg123.
Fixes ticket #666 of the beast.


Modified: trunk/vorbis-tools/ogg123/http_transport.c
===================================================================
--- trunk/vorbis-tools/ogg123/http_transport.c	2005-07-23 20:18:40 UTC (rev 9604)
+++ trunk/vorbis-tools/ogg123/http_transport.c	2005-07-23 20:31:16 UTC (rev 9605)
@@ -215,7 +215,7 @@
 
   /* ogg123 only accepts Ogg files, and optionally FLAC as well */
 #ifdef HAVE_LIBFLAC
-  private->header_list = curl_slist_append(NULL, "Accept: application/ogg audio/x-flac;q=0.9");
+  private->header_list = curl_slist_append(NULL, "Accept: application/ogg, audio/x-flac;q=0.9");
 #else
   private->header_list = curl_slist_append(NULL, "Accept: application/ogg");
 #endif



More information about the commits mailing list