projects
/
collectd.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d0b8094
)
src/collectd.c: Fix the arguments passed to an error message.
author
Brian Micek
<bmicek@gmail.com>
Sat, 23 Feb 2008 09:51:46 +0000
(10:51 +0100)
committer
Florian Forster
<octo@leeloo.lan.home.verplant.org>
Sat, 23 Feb 2008 09:51:46 +0000
(10:51 +0100)
Unfortunately the compiler doesn't check va-args, so this was unnoticed :/
src/collectd.c
patch
|
blob
|
history
diff --git
a/src/collectd.c
b/src/collectd.c
index
f260c84
..
984ff75
100644
(file)
--- a/
src/collectd.c
+++ b/
src/collectd.c
@@
-91,7
+91,7
@@
static int init_hostname (void)
"\"FQDNLookup\" option, but I cannot resolve "
"my hostname to a fully qualified domain "
"name. Please fix you network "
- "configuration.");
+ "configuration."
, hostname_g
);
return (-1);
}