mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-14 23:46:10 +00:00
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;
|
||
|
}
|