1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-24 21:01:20 +00:00
freebsd-ports/devel/mkmf/files/patch-ab

29 lines
680 B
Plaintext

*** src/misc.c~ Wed May 26 06:51:17 1993
--- src/misc.c Wed Mar 13 23:37:13 1996
***************
*** 68,76 ****
HASHBLK *htinstall(); /* install hash table entry */
! if (gets(answerbuf) == NULL)
exit(1);
if (*answerbuf != '\0')
if (htinstall(mdefkey, answerbuf, mdefval, MDEFTABLE) == NULL)
exit(1);
}
--- 68,81 ----
HASHBLK *htinstall(); /* install hash table entry */
! if (fgets(answerbuf, ANSWERBUFSIZE, stdin) == NULL)
exit(1);
if (*answerbuf != '\0')
+ {
+ char *nlpos = strchr(answerbuf, '\n');
+ if (nlpos)
+ *nlpos = '\0';
if (htinstall(mdefkey, answerbuf, mdefval, MDEFTABLE) == NULL)
exit(1);
+ }
}