diff options
author | jcid <devnull@localhost> | 2008-02-24 02:57:08 +0100 |
---|---|---|
committer | jcid <devnull@localhost> | 2008-02-24 02:57:08 +0100 |
commit | fc5368c8c1472227fca3b40254462531ac9f3910 (patch) | |
tree | 9259f74ac968d7c07dbc8f1021f67f5dfe37a253 /src | |
parent | 2c43308b4688c7b296424262a25ce18050f7a482 (diff) |
+ Better diagnostic message to dpid start process.
Diffstat (limited to 'src')
-rw-r--r-- | src/capi.c | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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); |