Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEugene Tarassov2011-11-17 04:45:17 +0000
committerEugene Tarassov2011-11-17 04:47:52 +0000
commit45c739a72bc2f3943aed89e4912137dc2afe8f8f (patch)
treed2e4e7f4e16962d83f8065358c680babcae31e63 /server/main/server.c
parent4081158bac8ea0553ae89c076c232116e334dcac (diff)
downloadorg.eclipse.tcf.agent-45c739a72bc2f3943aed89e4912137dc2afe8f8f.tar.gz
org.eclipse.tcf.agent-45c739a72bc2f3943aed89e4912137dc2afe8f8f.tar.xz
org.eclipse.tcf.agent-45c739a72bc2f3943aed89e4912137dc2afe8f8f.zip
TCF Server: fixed build error caused by changes in pathmap.c
Diffstat (limited to 'server/main/server.c')
-rw-r--r--server/main/server.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/main/server.c b/server/main/server.c
index 8164a3f0..0f5195de 100644
--- a/server/main/server.c
+++ b/server/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