diff options
author | Tim Biermann <tbier@posteo.de> | 2022-01-08 15:36:46 +0100 |
---|---|---|
committer | Tim Biermann <tbier@posteo.de> | 2022-01-10 16:45:19 +0100 |
commit | 0a42c5eaba23fd4f67353011acf66f91b0f82b51 (patch) | |
tree | 502f696b6e8a2b211cff017e2dade7c3920acf26 | |
parent | 6e4c78c9807b6385f30316c975782d299d8bcea6 (diff) | |
download | opt-0a42c5eaba23fd4f67353011acf66f91b0f82b51.tar.gz opt-0a42c5eaba23fd4f67353011acf66f91b0f82b51.tar.xz |
portdbc: removed old patch
-rw-r--r-- | portdbc/fixups.patch | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/portdbc/fixups.patch b/portdbc/fixups.patch deleted file mode 100644 index c554eb6e2..000000000 --- a/portdbc/fixups.patch +++ /dev/null @@ -1,23 +0,0 @@ -Binary files portdbc-1.1-orig/portdbc and portdbc-1.1/portdbc differ -diff -rupN portdbc-1.1-orig/portdbc.c portdbc-1.1/portdbc.c ---- portdbc-1.1-orig/portdbc.c 2011-07-13 18:04:19.000000000 +0200 -+++ portdbc-1.1/portdbc.c 2017-07-09 17:41:44.244318646 +0200 -@@ -44,6 +44,9 @@ int printHttpFile(char *url) - /* send all data to this function */ - curl_easy_setopt(curl_handle, CURLOPT_WRITEFUNCTION, writeCallback); - -+ /* 302 http -> https */ -+ curl_easy_setopt(curl_handle, CURLOPT_FOLLOWLOCATION, 1L); -+ - /* get it! */ - curl_easy_perform(curl_handle); - -@@ -254,7 +257,7 @@ int main(int argc, char** argv) - xmlNode *r_node = NULL; - - char *url = NULL; -- char *portdb_url = "http://crux.nu/portdb/"; -+ char *portdb_url = "https://crux.nu/portdb/"; - char *tmpfile = "/tmp/.portdbc.xml"; - - // use HOME directory when available |