aboutsummaryrefslogtreecommitdiff
path: root/math/physcalc/files/patch-ac
diff options
context:
space:
mode:
Diffstat (limited to 'math/physcalc/files/patch-ac')
-rw-r--r--math/physcalc/files/patch-ac20
1 files changed, 20 insertions, 0 deletions
diff --git a/math/physcalc/files/patch-ac b/math/physcalc/files/patch-ac
new file mode 100644
index 000000000000..46131c9eff22
--- /dev/null
+++ b/math/physcalc/files/patch-ac
@@ -0,0 +1,20 @@
+--- physmain.c Sun Aug 27 17:55:04 2000
++++ physmain.c.new Sun Aug 27 17:55:53 2000
+@@ -227,7 +227,7 @@
+ printf("Replace %s = ",v->name);
+ printexpr(v->value);
+ printf(" ?");
+- gets(answer);
++ fgets(answer, sizeof(answer), stdin);
+ printf("\n");
+ } else
+ answer[0] = 'Y';
+@@ -711,7 +711,7 @@
+ } else
+ while (TRUE) {
+ printf(">");
+- gets(buf);
++ fgets(buf, sizeof(buf), stdin);
+ do_cmd(buf);
+ }
+ }