From: cajus Date: Thu, 3 Jan 2008 15:23:45 +0000 (+0000) Subject: Fixed problems in variable asssignement X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=06cc2476d62963c92a7c314e9e135a56b1bf9b4b;p=gosa.git Fixed problems in variable asssignement git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@8198 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/gosa-si/debian/control b/gosa-si/debian/control index b860d234e..5cd7ae0a8 100644 --- a/gosa-si/debian/control +++ b/gosa-si/debian/control @@ -7,7 +7,7 @@ Build-Depends: debhelper(>= 4.2.32), dpatch Package: gosa-si-common Architecture: any -Depends: libconfig-inifiles-perl, libcrypt-rijndael-perl, libxml-simple-perl, libipc-shareable-perl, libdata-dumper-simple-perl, libmime-perl, libdbd-sqlite3-perl +Depends: libconfig-inifiles-perl, libcrypt-rijndael-perl, libxml-simple-perl, libipc-shareable-perl, libdata-dumper-simple-perl, libmime-perl, libdbd-sqlite3-perl, libnet-ldap-perl Suggests: gosa-si-server, gosa-si-client Description: GOsa support infrastructure This package provides common library functionality used by the diff --git a/gosa-si/gosa-si-server b/gosa-si/gosa-si-server index c3e79fb3e..9ae65c92c 100755 --- a/gosa-si/gosa-si-server +++ b/gosa-si/gosa-si-server @@ -1118,7 +1118,6 @@ while(1) { } # check gosa job queue for jobs with executable timestamp - print ">>>>>>>>>>>check gosa job queue "; my ($seconds, $minutes, $hours, $monthday, $month, $year, $weekday, $yearday, $sommertime) = localtime(time); $hours = $hours < 10 ? $hours = "0".$hours : $hours; @@ -1129,7 +1128,6 @@ while(1) { $monthday = $monthday < 10 ? $monthday = "0".$monthday : $monthday; $year+=1900; my $timestamp = "$year$month$monthday$hours$minutes$seconds"; - print "$timestamp\n"; my $sql = "SELECT * FROM '$job_queue_table_name' WHERE status='waiting' AND timestamp<'$timestamp'"; diff --git a/gosa-si/modules/GosaSupportDaemon.pm b/gosa-si/modules/GosaSupportDaemon.pm index dfec8d896..d6a7f0044 100644 --- a/gosa-si/modules/GosaSupportDaemon.pm +++ b/gosa-si/modules/GosaSupportDaemon.pm @@ -343,7 +343,7 @@ sub send_msg ($$$$) { } } - &send_msg_hash2address($out_hash, $address); + &send_msg_hash2address($out_hash, $to); } 1;