diff options
author | Jonathan M. Bresler <jmb@FreeBSD.org> | 1997-09-24 00:56:53 +0000 |
---|---|---|
committer | Jonathan M. Bresler <jmb@FreeBSD.org> | 1997-09-24 00:56:53 +0000 |
commit | 0a70d5d64baea0ae6437c554feeb177f70447520 (patch) | |
tree | 9c39a490ebf65239117db16fe7889b9fd2afeb86 /emulators | |
parent | fix Makefile, suffix changed to ".tgz" (diff) |
fix Makefile, suffix changed to ".tgz"
replace gets() with fgets()
update md5 file
Notes
Notes:
svn path=/head/; revision=8010
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/vmsbackup/distinfo | 2 | ||||
-rw-r--r-- | emulators/vmsbackup/files/patch-ac | 15 |
2 files changed, 16 insertions, 1 deletions
diff --git a/emulators/vmsbackup/distinfo b/emulators/vmsbackup/distinfo index 888e10289fbf..95bd122e1155 100644 --- a/emulators/vmsbackup/distinfo +++ b/emulators/vmsbackup/distinfo @@ -1 +1 @@ -MD5 (vmsbackup.tar.Z) = 8469f4a156c6d531e491558543eee0b6 +MD5 (vmsbackup.tgz) = c39a2fae9c29b48701cf1c93890562ce diff --git a/emulators/vmsbackup/files/patch-ac b/emulators/vmsbackup/files/patch-ac new file mode 100644 index 000000000000..c0db716002af --- /dev/null +++ b/emulators/vmsbackup/files/patch-ac @@ -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; + } |