aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjcid <devnull@localhost>2008-02-24 02:57:08 +0100
committerjcid <devnull@localhost>2008-02-24 02:57:08 +0100
commitfc5368c8c1472227fca3b40254462531ac9f3910 (patch)
tree9259f74ac968d7c07dbc8f1021f67f5dfe37a253
parent2c43308b4688c7b296424262a25ce18050f7a482 (diff)
+ Better diagnostic message to dpid start process.
-rw-r--r--src/capi.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/capi.c b/src/capi.c
index 662a3718..7cf2c18b 100644
--- a/src/capi.c
+++ b/src/capi.c
@@ -502,7 +502,10 @@ void a_Capi_ccc(int Op, int Branch, int Dir, ChainLink *Info,
/* remove the cache entry for this URL */
a_Cache_entry_remove_by_url(conn->url);
if (Data2 && !strcmp(Data2, "DpidERROR"))
- a_UIcmd_set_msg(conn->bw, "ERROR: can't start dpid daemon!");
+ a_UIcmd_set_msg(conn->bw,
+ "ERROR: can't start dpid daemon "
+ "(URL scheme = '%s')!",
+ URL_SCHEME(conn->url));
/* finish conn */
Capi_conn_unref(conn);
dFree(Info);