c987560802
```sh git grep -l '^patch_args=-Np0' "srcpkgs/$1*/template" | while read template; do for p in ${template%/template}/patches/*; do sed -i ' \,^[+-][+-][+-] /dev/null,b /^[*-]\+ [0-9]\+\(,[0-9]\+\)\? [*-]\+$/b s,^[*][*][*] ,&a/, /^--- /{ s,\(^--- \)\(./\)*,\1a/, s,[.][Oo][Rr][Ii][Gg]\([ /]\),\1, s/[.][Oo][Rr][Ii][Gg]$// s/[.]patched[.]\([^.]\)/.\1/ h } /^+++ -/{ g s/^--- a/+++ b/ b } s,\(^+++ \)\(./\)*,\1b/, ' "$p" done sed -i '/^patch_args=/d' $template done ```
18 lines
976 B
Diff
18 lines
976 B
Diff
--- a/ftpfs.c
|
|
+++ b/ftpfs.c
|
|
@@ -503,7 +503,6 @@ static void *ftpfs_write_thread(void *da
|
|
|
|
curl_easy_setopt_or_die(fh->write_conn, CURLOPT_URL, fh->full_path);
|
|
curl_easy_setopt_or_die(fh->write_conn, CURLOPT_UPLOAD, 1);
|
|
- curl_easy_setopt_or_die(fh->write_conn, CURLOPT_INFILESIZE, -1);
|
|
curl_easy_setopt_or_die(fh->write_conn, CURLOPT_READFUNCTION, write_data_bg);
|
|
curl_easy_setopt_or_die(fh->write_conn, CURLOPT_READDATA, fh);
|
|
curl_easy_setopt_or_die(fh->write_conn, CURLOPT_LOW_SPEED_LIMIT, 1);
|
|
@@ -645,7 +645,6 @@ static int create_empty_file(const char
|
|
pthread_mutex_lock(&ftpfs.lock);
|
|
cancel_previous_multi();
|
|
curl_easy_setopt_or_die(ftpfs.connection, CURLOPT_URL, full_path);
|
|
- curl_easy_setopt_or_die(ftpfs.connection, CURLOPT_INFILESIZE, 0);
|
|
curl_easy_setopt_or_die(ftpfs.connection, CURLOPT_UPLOAD, 1);
|
|
curl_easy_setopt_or_die(ftpfs.connection, CURLOPT_READDATA, NULL);
|
|
CURLcode curl_res = curl_easy_perform(ftpfs.connection);
|