From: ceriel Date: Thu, 12 Mar 1987 17:16:04 +0000 (+0000) Subject: Bug fixed that prevented "aal x" from working properly X-Git-Tag: release-5-5~4408 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=3f566164c233cdc624b5f219edc82a3da6038a0a;p=ack.git Bug fixed that prevented "aal x" from working properly --- diff --git a/util/arch/archiver.c b/util/arch/archiver.c index 8df28fcfd..25a248948 100644 --- a/util/arch/archiver.c +++ b/util/arch/archiver.c @@ -296,15 +296,15 @@ register char *argv[]; wr_arhdr(temp_fd, member); copy_member(member, ar_fd, temp_fd, 0); } -#ifndef AAL else { +#ifndef AAL if (app_fl && i != argc) { print("%s: already in archive\n", argv[i]); argv[i] = ""; } +#endif lseek(ar_fd, even(member->ar_size),1); } -#endif continue; } }