Code

Add missing '$' to sql statement to actually use the macadress instead of a bare...
authorjanw <janw@594d385d-05f5-0310-b6e9-bd551577e9d8>
Wed, 29 Jul 2009 15:38:29 +0000 (15:38 +0000)
committerjanw <janw@594d385d-05f5-0310-b6e9-bd551577e9d8>
Wed, 29 Jul 2009 15:38:29 +0000 (15:38 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@13960 594d385d-05f5-0310-b6e9-bd551577e9d8

gosa-si/gosa-si-server

index 283eb1d664d671a2fb9ea4a09302f52353e38e45..2b4b11384d5c1dc88c58b19c268ad1d3db9c0660 100755 (executable)
@@ -1099,7 +1099,7 @@ sub reactivate_job_with_delay {
     if (not defined $delay) { $delay = 30 } ;
     my $delay_timestamp = &calc_timestamp(&get_time(), "plus", $delay);
 
-    my $sql = "UPDATE $job_queue_tn Set timestamp='$delay_timestamp', status='waiting' WHERE (macaddress LIKE 'target' AND headertag='$header')"; 
+    my $sql = "UPDATE $job_queue_tn Set timestamp='$delay_timestamp', status='waiting' WHERE (macaddress LIKE '$target' AND headertag='$header')"; 
     my $res = $job_db->update_dbentry($sql);
     daemon_log("$session_id INFO: '$header'-job will be reactivated at '$delay_timestamp' ".
             "cause client '$target' is currently not available", 5);