From: Andre Noll Date: Sat, 7 Apr 2012 18:04:05 +0000 (+0200) Subject: interactive: Init task status. X-Git-Tag: v0.4.11~25 X-Git-Url: http://git.tuebingen.mpg.de/?a=commitdiff_plain;h=c48df6b449e219418b837954df90660b08dde75e;p=paraslash.git interactive: Init task status. The log messages of the scheduler print the task status, so all tasks should fill out the task.status field. The interactive task missed to to so. Fix is trivial. --- diff --git a/interactive.c b/interactive.c index 12fcfe15..f9ea3612 100644 --- a/interactive.c +++ b/interactive.c @@ -375,6 +375,7 @@ int i9e_open(struct i9e_client_info *ici, struct sched *s) return ret; i9ep->task.pre_select = i9e_pre_select; i9ep->task.post_select = i9e_post_select; + sprintf(i9ep->task.status, "i9e"); register_task(s, &i9ep->task); rl_readline_name = "para_i9e"; rl_basic_word_break_characters = " ";