diff --git a/checkin_notes b/checkin_notes index 2bfa2cd177..11c2f43684 100644 --- a/checkin_notes +++ b/checkin_notes @@ -7869,3 +7869,9 @@ David 26 Oct 2011 client/ client_types.cpp + +David 26 Oct 2011 + - scheduler: typo in a SQL query + + sched/ + sched_send.cpp diff --git a/sched/sched_send.cpp b/sched/sched_send.cpp index b0170f9646..b031733bf6 100644 --- a/sched/sched_send.cpp +++ b/sched/sched_send.cpp @@ -948,7 +948,7 @@ int update_wu_on_send(WORKUNIT wu, time_t x, APP& app, BEST_APP_VERSION& bav) { if (app.homogeneous_app_version && wu.app_version_id==0) { sprintf(buf2, ", app_version_id=%d", bav.avp->id); strcat(buf, buf2); - strcpy(where_clause, "app_version_id==0"); + strcpy(where_clause, "app_version_id=0"); } if (app_hr_type(app) && wu.hr_class==0) { int host_hr_class = hr_class(g_request->host, app_hr_type(app));