mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-04 22:33:27 +00:00
cf3d05cb92
Approved by: Maintainer
48 lines
977 B
Plaintext
48 lines
977 B
Plaintext
--- ./arcadd.c.orig Tue Aug 10 23:03:24 1999
|
|
+++ ./arcadd.c Tue Aug 10 23:01:55 1999
|
|
@@ -119,7 +119,7 @@
|
|
}
|
|
#endif
|
|
}
|
|
- if (notemp && warn)
|
|
+ if (notemp && arcwarn)
|
|
printf("No files match: %s\n", arg[n]);
|
|
}
|
|
|
|
@@ -133,7 +133,7 @@
|
|
free(path);
|
|
free(name);
|
|
}
|
|
- if (nowork && warn)
|
|
+ if (nowork && arcwarn)
|
|
printf("No files were added.\n");
|
|
}
|
|
|
|
@@ -227,7 +227,7 @@
|
|
if (move) { /* if this was a move */
|
|
for (n = 0; n < nfiles; n++) { /* then delete each file
|
|
* added */
|
|
- if (unlink(path[n]) && warn) {
|
|
+ if (unlink(path[n]) && arcwarn) {
|
|
printf("Cannot unsave %s\n", path[n]);
|
|
nerrs++;
|
|
}
|
|
@@ -259,7 +259,7 @@
|
|
if (!f)
|
|
#endif
|
|
{
|
|
- if (warn) {
|
|
+ if (arcwarn) {
|
|
printf("Cannot read file: %s\n", path);
|
|
nerrs++;
|
|
}
|
|
@@ -267,7 +267,7 @@
|
|
}
|
|
#if !DOS
|
|
if (strlen(name) >= FNLEN) {
|
|
- if (warn) {
|
|
+ if (arcwarn) {
|
|
char buf[STRLEN];
|
|
printf("WARNING: File %s name too long!\n", name);
|
|
name[FNLEN-1]='\0';
|