aboutsummaryrefslogtreecommitdiffstats
path: root/community/unarj
diff options
context:
space:
mode:
authorLeo <thinkabit.ukim@gmail.com>2020-01-29 00:19:19 +0100
committerLeo <thinkabit.ukim@gmail.com>2020-01-29 00:19:19 +0100
commit7b666d29c84d5cad788815a1c9133a5c38c5f410 (patch)
tree7e0e9f567ea66bc0c2629499454d07545f6d674b /community/unarj
parentc10f2d9b183c51fddfcb61024d01a5bd21197694 (diff)
downloadaports-7b666d29c84d5cad788815a1c9133a5c38c5f410.tar.bz2
aports-7b666d29c84d5cad788815a1c9133a5c38c5f410.tar.xz
Remove stale patches in community/
Diffstat (limited to 'community/unarj')
-rw-r--r--community/unarj/format.patch66
1 files changed, 0 insertions, 66 deletions
diff --git a/community/unarj/format.patch b/community/unarj/format.patch
deleted file mode 100644
index 2c4c0ab7df..0000000000
--- a/community/unarj/format.patch
+++ /dev/null
@@ -1,66 +0,0 @@
-diff --git a/unarj.c b/unarj.c
-index 02b1a63..85e7b05 100644
---- a/unarj.c
-+++ b/unarj.c
-@@ -696,7 +696,7 @@ check_flags()
- }
- if ((arj_flags & GARBLE_FLAG) != 0)
- {
-- printf(M_ENCRYPT);
-+ printf("%s", M_ENCRYPT);
- printf(M_SKIPPED, filename);
- skip();
- return -1;
-@@ -777,7 +777,7 @@ extract()
- }
- printf(M_EXTRACT, name);
- if (host_os != OS && file_type == BINARY_TYPE)
-- printf(M_DIFFHOST);
-+ printf("%s", M_DIFFHOST);
- printf(" ");
-
- crc = CRC_MASK;
-@@ -793,10 +793,10 @@ extract()
- set_ftime_mode(name, time_stamp, file_mode, (uint) host_os);
-
- if ((crc ^ CRC_MASK) == file_crc)
-- printf(M_CRCOK);
-+ printf("%s", M_CRCOK);
- else
- {
-- printf(M_CRCERROR);
-+ printf("%s", M_CRCERROR);
- error_count++;
- }
- return 1;
-@@ -822,10 +822,10 @@ test()
- decode_f();
-
- if ((crc ^ CRC_MASK) == file_crc)
-- printf(M_CRCOK);
-+ printf("%s", M_CRCOK);
- else
- {
-- printf(M_CRCERROR);
-+ printf("%s", M_CRCERROR);
- error_count++;
- }
- return 1;
-@@ -972,7 +972,7 @@ help()
- int i;
-
- for (i = 0; M_USAGE[i] != NULL; i++)
-- printf(M_USAGE[i]);
-+ printf("%s", M_USAGE[i]);
- }
-
- int
-@@ -987,7 +987,7 @@ char *argv[];
- argc = ccommand(&argv);
- #endif
-
-- printf(M_VERSION);
-+ printf("%s", M_VERSION);
-
- if (argc == 1)
- {