git://git.exim.org
/
users
/
heiko
/
exim.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
337e350
)
Fix compile of exim_monitor
author
Phil Pennock
<pdp@exim.org>
Thu, 5 May 2011 01:41:58 +0000
(21:41 -0400)
committer
Phil Pennock
<pdp@exim.org>
Thu, 5 May 2011 01:41:58 +0000
(21:41 -0400)
The "Compiler masochism compliance" patch changed the log_write()
prototype to use "const char *" instead of "char *"; I don't have X11 on
my main box, so neglected to handle exim_monitor's duplicate definition
of log_write().
Fixes bug 1107
src/exim_monitor/em_main.c
patch
|
blob
|
history
diff --git
a/src/exim_monitor/em_main.c
b/src/exim_monitor/em_main.c
index 187dba3b06f9782519a62b6cdf14b9601df8fe5e..4692fa744889f16a0ed1c69ff735708251224fd4 100644
(file)
--- a/
src/exim_monitor/em_main.c
+++ b/
src/exim_monitor/em_main.c
@@
-168,7
+168,7
@@
Returns: nothing
*/
void
-log_write(unsigned int selector, int flags, char *format, ...)
+log_write(unsigned int selector, int flags, c
onst c
har *format, ...)
{
va_list ap;
va_start(ap, format);