ports/audio/cdparanoia/files/patch-main.c
Tobias Rehbein d0b1d9ec73 audio/cdparanoia: the port had been updated to version III-10.2
- GC no longer useful post-patch target and GNU_CONFIGURE_MANPREFIX
- Replace stripping in post-install with proper BSD_INSTALL_* calls

PR:	200925
2024-07-04 06:24:52 +00:00

15 lines
394 B
C

--- main.c.orig 2019-07-23 18:12:13 UTC
+++ main.c
@@ -588,10 +588,10 @@ static void callback(long inpos, int function){
buffer[aheadposition+19]='>';
}
- fprintf(stderr,buffer);
+ fprintf(stderr,"%s",buffer);
if (logfile != NULL && function==-1) {
- fprintf(logfile,buffer+1);
+ fprintf(logfile,"%s",buffer+1);
fprintf(logfile,"\n\n");
fflush(logfile);
}