patch-arcrun_c 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. $OpenBSD: patch-arcrun_c,v 1.3 2006/06/21 10:19:33 alek Exp $
  2. --- arcrun.c.orig Wed Oct 12 17:22:18 2005
  3. +++ arcrun.c Wed Jun 21 12:17:53 2006
  4. @@ -98,7 +98,7 @@ runfile(hdr, num, arg) /* run a file */
  5. strcpy(sys, buf);
  6. else {
  7. - if (warn) {
  8. + if (arcwarn) {
  9. printf("File %s is not a .BAS, .BAT, .COM, or .EXE\n",
  10. hdr->name);
  11. nerrs++;
  12. @@ -112,7 +112,7 @@ runfile(hdr, num, arg) /* run a file */
  13. && strcmp(i, ".TTP")
  14. && strcmp(i, ".TOS"))
  15. {
  16. - if (warn) {
  17. + if (arcwarn) {
  18. printf("File %s is not a .PRG, .TOS, or .TTP\n",
  19. hdr->name);
  20. nerrs++;
  21. @@ -122,7 +122,7 @@ runfile(hdr, num, arg) /* run a file */
  22. }
  23. #endif
  24. - if (warn)
  25. + if (arcwarn)
  26. if ((tmp = fopen(buf, "r")))
  27. arcdie("Temporary file %s already exists", buf);
  28. if (!(tmp = tmpopen(buf)))
  29. @@ -146,7 +146,7 @@ runfile(hdr, num, arg) /* run a file */
  30. if (system(buf)) /* try to invoke it */
  31. arcdie("Execution failed for %s", buf);
  32. #endif
  33. - if (unlink(buf) && warn) {
  34. + if (unlink(buf) && arcwarn) {
  35. printf("Cannot unsave temporary file %s\n", buf);
  36. nerrs++;
  37. }