summaryrefslogtreecommitdiffstats
path: root/ctdb/server/ctdb_daemon.c
diff options
context:
space:
mode:
authorRonnie Sahlberg <sahlberg@samba.org>2008-04-10 09:56:49 +1000
committerRonnie Sahlberg <sahlberg@samba.org>2008-04-10 09:56:49 +1000
commitcd1858d1269acfe96c3f2a67ace5fca46131031f (patch)
tree62d14460f19db8056ea14223ed69a007dbfc401c /ctdb/server/ctdb_daemon.c
parentea86c31da6bcfdbdc0ac2e82ca9b993ddc1be814 (diff)
downloadsamba-cd1858d1269acfe96c3f2a67ace5fca46131031f.tar.gz
samba-cd1858d1269acfe96c3f2a67ace5fca46131031f.tar.xz
samba-cd1858d1269acfe96c3f2a67ace5fca46131031f.zip
fix compiler warning during a fatal error failing to lock down the socket
(This used to be ctdb commit 0ad22de1a614dc2d1926546027be5f5eea3381ed)
Diffstat (limited to 'ctdb/server/ctdb_daemon.c')
-rw-r--r--ctdb/server/ctdb_daemon.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ctdb/server/ctdb_daemon.c b/ctdb/server/ctdb_daemon.c
index 24314e9134..93af56c176 100644
--- a/ctdb/server/ctdb_daemon.c
+++ b/ctdb/server/ctdb_daemon.c
@@ -596,7 +596,7 @@ static int ux_socket_bind(struct ctdb_context *ctdb)
if (chown(ctdb->daemon.name, geteuid(), getegid()) != 0 ||
chmod(ctdb->daemon.name, 0700) != 0) {
- DEBUG(DEBUG_CRIT,("Unable to secure ctdb socket '%s', ctdb->daemon.name\n"));
+ DEBUG(DEBUG_CRIT,("Unable to secure ctdb socket '%s', ctdb->daemon.name\n", ctdb->daemon.name));
goto failed;
}