1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-31 05:41:08 +00:00
freebsd-ports/net/imapproxy/files/patch-af
Michael Landin dd8a084dbd Unbreak build on alpha 5.x
bump PORTREVISION

Approved by:		roberto (mentor)
Reviewed by:		maintainer
2003-08-22 13:25:23 +00:00

21 lines
451 B
Plaintext

--- output.c.orig Fri Aug 1 06:34:16 2003
+++ output.c Fri Aug 1 06:33:29 2003
@@ -40,7 +40,7 @@
vsnprintf(buf, sizeof(buf), fmt, v);
//fprintf(stderr,"[DEBUG %d] %s",getpid(),buf);
log(LOG_DEBUG,"[DEBUG %d] %s",getpid(),buf);
- va_end(fmt);
+ va_end(v);
}
}
@@ -57,7 +57,7 @@
openlog(PROGNAME, LOG_PID , config_log_facility);
syslog(config_log_facility | level, "%s", buf);
//closelog();
- va_end(fmt);
+ va_end(v);
}
}