1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-26 05:02:18 +00:00

fix Makefile, suffix changed to ".tgz"

replace gets() with fgets()
update md5 file
This commit is contained in:
Jonathan M. Bresler 1997-09-24 00:56:53 +00:00
parent 8e2b2403d0
commit 0a70d5d64b
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=8010
2 changed files with 16 additions and 1 deletions

View File

@ -1 +1 @@
MD5 (vmsbackup.tar.Z) = 8469f4a156c6d531e491558543eee0b6
MD5 (vmsbackup.tgz) = c39a2fae9c29b48701cf1c93890562ce

View File

@ -0,0 +1,15 @@
*** vmsbackup.c Tue Sep 23 17:27:13 1997
--- ../../src/vmsbackup.c Tue Sep 23 17:30:12 1997
***************
*** 262,266 ****
printf("extract %s [ny]",filename);
fflush(stdout);
! gets(ans);
if(*ans != 'y') procf = NULL;
}
--- 262,266 ----
printf("extract %s [ny]",filename);
fflush(stdout);
! fgets(ans, 80, stdin);
if(*ans != 'y') procf = NULL;
}