Refresh the patches list.
authorJérôme Benoit <jerome.benoit@piment-noir.org>
Wed, 26 Nov 2014 00:48:26 +0000 (01:48 +0100)
committerJérôme Benoit <jerome.benoit@piment-noir.org>
Wed, 26 Nov 2014 00:48:26 +0000 (01:48 +0100)
Signed-off-by: Jérôme Benoit <jerome.benoit@piment-noir.org>
debian/patches/fix-ipv4-ipv6-race.patch
debian/patches/passwd-auth-with-itunes.patch
debian/patches/read_airportkey_from_etc.patch
debian/patches/series

index 94333f78b7e8311f53ea8ec48958444ff92d79a8..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 100644 (file)
@@ -1,13 +0,0 @@
---- a/src/lib/httpd.c
-+++ b/src/lib/httpd.c
-@@ -237,7 +237,8 @@ struct httpd_s {
-                               continue;
-                       }
-               }
--              if (httpd->server_fd6 != -1 && FD_ISSET(httpd->server_fd6, &rfds)) {
-+              if (httpd->open_connections < httpd->max_connections &&
-+                  httpd->server_fd6 != -1 && FD_ISSET(httpd->server_fd6, &rfds)) {
-                       ret = httpd_accept_connection(httpd, httpd->server_fd6, 1);
-                       if (ret == -1) {
-                               break;
-
index 0a91596a5df05759403e2b4c1ec5c05dc4d0c004..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 100644 (file)
@@ -1,12 +0,0 @@
---- a/src/lib/raop.c.orig      2013-04-17 15:17:49.000000000 +0200
-+++ b/src/lib/raop.c   2014-03-24 23:22:30.000000000 +0100
-@@ -139,7 +139,7 @@
-       }
-       res = http_response_init("RTSP/1.0", 200, "OK");
--      if (strlen(raop->password)) {
-+      if (strcmp(method, "OPTIONS") && strlen(raop->password)) {
-               const char *authorization;
-               authorization = http_request_get_header(request, "Authorization");
-
index 80d4d17b91755d5c5007231fa34b2479a2eed6c3..8b3f33df3b70d3b13b9c99e59138d92da7b43e04 100644 (file)
@@ -1,16 +1,15 @@
---- shairplay-0.9.0.orig/src/shairplay.c
-+++ shairplay-0.9.0/src/shairplay.c
-@@ -313,8 +313,11 @@ main(int argc, char *argv[])
+--- a/src/shairplay.c
++++ b/src/shairplay.c
+@@ -346,10 +346,10 @@
+       raop_cbs.audio_destroy = audio_destroy;
+       raop_cbs.audio_set_volume = audio_set_volume;
  
-       raop = raop_init_from_keyfile(10, &raop_cbs, "airport.key", NULL);
+-      raop = raop_init_from_keyfile(10, &raop_cbs, "airport.key", NULL);
++      raop = raop_init_from_keyfile(10, &raop_cbs, "/etc/shairplay/airport.key", NULL);
        if (raop == NULL) {
--              fprintf(stderr, "Could not initialize the RAOP service\n");
--              return -1;
-+              raop = raop_init_from_keyfile(10, &raop_cbs, "/etc/shairplay/airport.key", NULL);
-+              if (raop == NULL) {
-+                      fprintf(stderr, "Could not initialize the RAOP service\n");
-+                      return -1;
-+              }
+               fprintf(stderr, "Could not initialize the RAOP service\n");
+-              fprintf(stderr, "Please make sure the airport.key file is in the current directory.\n");
++              fprintf(stderr, "Please make sure the /etc/shairplay/airport.key file is in the current directory.\n");
+               return -1;
        }
  
-       if (strlen(options.password)) {
index d77a2fa0d3278f6eec90b4009e0daa3e4173ab1d..5e6fbadafc003857f3679d8cc1c2a6fc83b2b65d 100644 (file)
@@ -1,3 +1 @@
 read_airportkey_from_etc.patch
-fix-ipv4-ipv6-race.patch
-passwd-auth-with-itunes.patch