|
From: Steve D. <ste...@us...> - 2009-01-21 00:59:22
|
Update of /cvsroot/evms/evms2/engine/ui/ncurses In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv31403 Modified Files: task.c Log Message: In update_selected_objects() the count parameter is not used. It should be updated to remove the the number of declined objects, if any. Index: task.c =================================================================== RCS file: /cvsroot/evms/evms2/engine/ui/ncurses/task.c,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- task.c 4 Jan 2008 18:17:50 -0000 1.7 +++ task.c 21 Jan 2009 00:59:16 -0000 1.8 @@ -971,6 +971,7 @@ display_declination_window(declined_list); log_warning("%s: Some of the object selections were declined.\n", __FUNCTION__); + *count -= declined_list->count; evms_free(declined_list); } sched_clist_idle_func(clist, (clist_idle_func)reload_acceptable_objects); |