Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-ports
Path: blob/main/archivers/arc/files/patch-arc.c
18157 views
1
--- arc.c.orig 2013-06-27 02:00:19 UTC
2
+++ arc.c
3
@@ -280,7 +280,7 @@ main(num, arg) /* system entry point */
4
keepbak = 1;
5
6
else if (*a == 'W') /* suppress warnings */
7
- warn = 0;
8
+ arcwarn = 0;
9
#if !DOS
10
else if (*a == 'I') /* image mode, no ASCII/EBCDIC x-late */
11
image = !image;
12
@@ -416,7 +416,7 @@ expandlst(n) /* expand an indirect reference */
13
expandlst(n) /* expand an indirect reference */
14
int n; /* number of entry to expand */
15
{
16
- FILE *lf, *fopen(); /* list file, opener */
17
+ FILE *lf; /* list file, opener */
18
char buf[100]; /* input buffer */
19
int x; /* index */
20
char *p = lst[n] + 1; /* filename pointer */
21
22