diff options
author | Andrew Tridgell <tridge@samba.org> | 2007-05-29 13:48:30 +1000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2007-05-29 13:48:30 +1000 |
commit | bc891232b600d2c03688003213f5cb0ac6977f8c (patch) | |
tree | 3997619bbd5990a5b1ca0ba2241e737a9bbba808 /ctdb/common/ctdb_daemon.c | |
parent | edcaa0d6a051d69a82ad15e275605fffb8d26075 (diff) | |
download | samba-bc891232b600d2c03688003213f5cb0ac6977f8c.tar.gz samba-bc891232b600d2c03688003213f5cb0ac6977f8c.tar.xz samba-bc891232b600d2c03688003213f5cb0ac6977f8c.zip |
fixed some debug messages
(This used to be ctdb commit 037f0149c0c0e65af0a1669b9a52586129e4b48f)
Diffstat (limited to 'ctdb/common/ctdb_daemon.c')
-rw-r--r-- | ctdb/common/ctdb_daemon.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ctdb/common/ctdb_daemon.c b/ctdb/common/ctdb_daemon.c index 435c1b1ea3..6b76c1824c 100644 --- a/ctdb/common/ctdb_daemon.c +++ b/ctdb/common/ctdb_daemon.c @@ -617,11 +617,11 @@ static int ux_socket_bind(struct ctdb_context *ctdb) strncpy(addr.sun_path, ctdb->daemon.name, sizeof(addr.sun_path)); if (bind(ctdb->daemon.sd, (struct sockaddr *)&addr, sizeof(addr)) == -1) { - DEBUG(0,("Unable to bind on ctdb socket '%s', ctdb->daemon.name\n")); + DEBUG(0,("Unable to bind on ctdb socket '%s'\n", ctdb->daemon.name)); goto failed; } if (listen(ctdb->daemon.sd, 10) != 0) { - DEBUG(0,("Unable to listen on ctdb socket '%s', ctdb->daemon.name\n")); + DEBUG(0,("Unable to listen on ctdb socket '%s'\n", ctdb->daemon.name)); goto failed; } |