mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
0a70d5d64b
replace gets() with fgets() update md5 file
16 lines
382 B
Plaintext
16 lines
382 B
Plaintext
*** 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;
|
|
}
|