summarylogtreecommitdiffstats
path: root/altermime-0.3.10-fprintf-compiler-error.patch
diff options
context:
space:
mode:
authorCarlos Aznarán Laos2021-12-10 13:55:49 -0500
committerCarlos Aznarán Laos2021-12-10 13:55:49 -0500
commit4e691b17536cca0022b7d4cb3aef66ef7a0a75d5 (patch)
tree93b60da4c08a20a26478c339d2266ba9f17d8d93 /altermime-0.3.10-fprintf-compiler-error.patch
parent7f52b96076ce85513396873389b7267e033cf50b (diff)
downloadaur-altermime.tar.gz
Version bump to 0.3.11
Diffstat (limited to 'altermime-0.3.10-fprintf-compiler-error.patch')
-rw-r--r--altermime-0.3.10-fprintf-compiler-error.patch45
1 files changed, 0 insertions, 45 deletions
diff --git a/altermime-0.3.10-fprintf-compiler-error.patch b/altermime-0.3.10-fprintf-compiler-error.patch
deleted file mode 100644
index ba19ebf40c06..000000000000
--- a/altermime-0.3.10-fprintf-compiler-error.patch
+++ /dev/null
@@ -1,45 +0,0 @@
---- qpe.c.orig 2008-11-16 08:45:45.000000000 +0000
-+++ qpe.c 2008-11-23 12:06:08.000000000 +0000
-@@ -97,7 +97,7 @@
- op+= strlen(paragraph);// +3; /** jump the output + =\r\n **/
- out_remaining-= (strlen(paragraph)); // Was +3, updated to fix Outlook problems
-
-- QPD fprintf(stdout, "Soft break (%d + %d > 76 char) for '%s'\n", current_line_length, charout_size, paragraph);
-+ QPD fprintf(stdout, "Soft break (%Zd + %d > 76 char) for '%s'\n", current_line_length, charout_size, paragraph);
-
- /** reinitialize the paragraph **/
- paragraph[0] = '\0';
-@@ -108,7 +108,7 @@
- }
-
- snprintf(pp, pp_remaining, "%s", charout);
-- QPD fprintf(stdout,"charout='%s', size=%d, pp_remain=%d result='%s'\n", charout, charout_size, pp_remaining, paragraph);
-+ QPD fprintf(stdout,"charout='%s', size=%d, pp_remain=%Zd result='%s'\n", charout, charout_size, pp_remaining, paragraph);
- pp += charout_size;
- pp_remaining -= charout_size;
- p++;
-@@ -149,13 +149,13 @@
- out_size = in_size *3;
- in_buffer = malloc( sizeof(char) *in_size +1);
- if (in_buffer == NULL) {
-- QPD fprintf(stdout,"Error allocating %d bytes for input buffer\n", in_size);
-+ QPD fprintf(stdout,"Error allocating %Zd bytes for input buffer\n", in_size);
- return -1;
- }
-
- out_buffer = malloc( sizeof(char) *out_size *3 +1);
- if (in_buffer == NULL) {
-- QPD fprintf(stdout,"Error allocating %d bytes for output buffer\n", out_size);
-+ QPD fprintf(stdout,"Error allocating %Zd bytes for output buffer\n", out_size);
- return -1;
- }
-
-@@ -169,7 +169,7 @@
- ** we segfault ;) **/
- *(in_buffer +in_size) = '\0';
-
-- QPD fprintf(stdout,"file %s is loaded, size = %d\n", fname, in_size);
-+ QPD fprintf(stdout,"file %s is loaded, size = %Zd\n", fname, in_size);
-
- qp_encode( out_buffer, out_size, in_buffer, in_size );
-