From c5c97327cff7664c1648034538225ca7d5267d56 Mon Sep 17 00:00:00 2001 From: rettenbe Date: Thu, 5 Jun 2008 09:41:17 +0000 Subject: [PATCH] gosa-si-server: no additional stderr outputs git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@11242 594d385d-05f5-0310-b6e9-bd551577e9d8 --- gosa-si/gosa-si-server | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/gosa-si/gosa-si-server b/gosa-si/gosa-si-server index 5b125a6c1..bfb1619a3 100755 --- a/gosa-si/gosa-si-server +++ b/gosa-si/gosa-si-server @@ -1085,7 +1085,7 @@ sub msg_to_decrypt { if ($source eq "GOSA") { $msg =~ s/<\/xml>/$local_address,$session_id<\/forward_to_gosa><\/xml>/; } - print STDERR "target is own address without forward_to_gosa-tag -> process here\n"; + #print STDERR "target is own address without forward_to_gosa-tag -> process here\n"; } } @@ -1097,7 +1097,7 @@ sub msg_to_decrypt { $done = 1; my $hostname = $res->{1}->{'hostname'}; $msg =~ s/$target<\/target>/$hostname<\/target>/; - print STDERR "target is a client address in known_clients -> process here\n"; + #print STDERR "target is a client address in known_clients -> process here\n"; } else { $not_found_in_known_clients_db = 1; } @@ -1112,7 +1112,7 @@ sub msg_to_decrypt { my ($gosa_at, $gosa_session_id) = split(/,/, $forward_to_gosa); if ($gosa_at ne $local_address) { $done = 1; - print STDERR "target is own address with forward_to_gosa-tag not pointing to myself -> process here\n"; + #print STDERR "target is own address with forward_to_gosa-tag not pointing to myself -> process here\n"; } } } @@ -1153,7 +1153,7 @@ sub msg_to_decrypt { $heap->{'client'}->put($msg); } $done = 1; - print STDERR "target is own address with forward_to_gosa-tag pointing at myself -> forward to gosa\n"; + #print STDERR "target is own address with forward_to_gosa-tag pointing at myself -> forward to gosa\n"; } } @@ -1178,7 +1178,7 @@ sub msg_to_decrypt { &send_msg_to_target($msg, $regserver, $regserver_key, $header, $session_id); } $done = 1; - print STDERR "target is a client address in foreign_clients -> forward to registration server\n"; + #print STDERR "target is a client address in foreign_clients -> forward to registration server\n"; } else { $not_found_in_foreign_clients_db = 1; } @@ -1199,7 +1199,7 @@ sub msg_to_decrypt { &send_msg_to_target($msg, $target, $hostkey, $header, $session_id); $done = 1; - print STDERR "target is a server address -> forward to server\n"; + #print STDERR "target is a server address -> forward to server\n"; } else { $not_found_in_known_server_db = 1; } -- 2.30.2