summaryrefslogtreecommitdiff
path: root/mail/ml/files/patch-af
diff options
context:
space:
mode:
Diffstat (limited to 'mail/ml/files/patch-af')
-rw-r--r--mail/ml/files/patch-af20
1 files changed, 20 insertions, 0 deletions
diff --git a/mail/ml/files/patch-af b/mail/ml/files/patch-af
new file mode 100644
index 000000000000..d986c4773ff4
--- /dev/null
+++ b/mail/ml/files/patch-af
@@ -0,0 +1,20 @@
+--- ../imap-4/src/c-client/mtest.c.orig Sun Jun 13 16:51:38 1999
++++ ../imap-4/src/c-client/mtest.c Sun Jun 13 16:54:03 1999
+@@ -479,7 +479,7 @@
+ void prompt (char *msg,char *txt)
+ {
+ printf ("%s",msg);
+- gets (txt);
++ fgets (txt, (8 * MAILTMPLEN), stdin);
+ }
+
+ /* Interfaces to C-client */
+@@ -664,7 +664,7 @@
+ puts (" Msg (end with a line with only a '.'):");
+ body->type = TYPETEXT;
+ *text = '\0';
+- while (gets (line)) {
++ while (fgets (line, MAILTMPLEN, stdin)) {
+ if (line[0] == '.') {
+ if (line[1] == '\0') break;
+ else strcat ((char *) text,".");