mirror of
https://git.freebsd.org/ports.git
synced 2025-05-05 16:07:38 -04:00
- GC no longer useful post-patch target and GNU_CONFIGURE_MANPREFIX - Replace stripping in post-install with proper BSD_INSTALL_* calls PR: 200925
15 lines
394 B
C
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);
|
|
}
|