Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEugene Tarassov2011-11-17 04:45:17 +0000
committerEugene Tarassov2011-11-17 04:45:17 +0000
commit17663a933ae22bd005f2761a657d101f0389ae20 (patch)
treedc1c1de5e0c2db1c9a1d4c822609f554b52e234f /server/tcf/main
parent9d0e1c944134faa8a46f7def412274d4d9da36d1 (diff)
downloadorg.eclipse.tcf.agent-17663a933ae22bd005f2761a657d101f0389ae20.tar.gz
org.eclipse.tcf.agent-17663a933ae22bd005f2761a657d101f0389ae20.tar.xz
org.eclipse.tcf.agent-17663a933ae22bd005f2761a657d101f0389ae20.zip
TCF Server: fixed build error caused by changes in pathmap.c
Diffstat (limited to 'server/tcf/main')
-rw-r--r--server/tcf/main/server.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/tcf/main/server.c b/server/tcf/main/server.c
index c9b7f3fd..3edd0b3c 100644
--- a/server/tcf/main/server.c
+++ b/server/tcf/main/server.c
@@ -58,7 +58,7 @@ static void channel_redirection_listener(Channel * host, Channel * target) {
if (strcmp(nm, "PathMap") == 0) service_pm = 1;
}
if (!service_pm || !service_ln || !service_sm) {
- ini_path_map_service(host->protocol);
+ ini_path_map_service(host->protocol, bcg);
if (service_pm) forward_pm = 1;
}
if (service_mm) {

Back to the top