Custom Query (981 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (43 - 45 of 981)

Ticket Owner Reporter Resolution Summary
#1280 big23boy Joachim fixed Transfers tab redesign
Description

redesign transfers tab to match mockup as mentioned in todo list.

#1287 Joachim Kevin Reed fixed WCG Attach fails with space in user name
#1324 davea Christian Beer fixed call to handle_trickle_init() from sched/trickle_handler.cpp fails
Description

The parsing of command line arguments in trickle_handler.cpp is passing on the correct arguments but the wrong number of arguments to the custom handle_trickle_init(). This patch corrects this:

diff --git a/sched/trickle_handler.cpp b/sched/trickle_handler.cpp
index c365e48..b04f4f2 100644
--- a/sched/trickle_handler.cpp
+++ b/sched/trickle_handler.cpp
@@ -168,6 +168,7 @@ int main(int argc, char** argv) {
     }
 
     argv[j] = 0;
+    argc = j;
     retval = handle_trickle_init(argc, argv);
     if (retval) exit(1);
Note: See TracQuery for help on using queries.