From 0cfe1182f6501b088f52b8a6414b6abc2f15dedc Mon Sep 17 00:00:00 2001 From: Frederic Culot Date: Sat, 28 Oct 2006 10:35:55 +0000 Subject: getstring() call in todo_new_item() updated --- src/todo.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/todo.c b/src/todo.c index 3337187..d614acd 100755 --- a/src/todo.c +++ b/src/todo.c @@ -1,4 +1,4 @@ -/* $calcurse: todo.c,v 1.4 2006/09/02 09:20:35 culot Exp $ */ +/* $calcurse: todo.c,v 1.5 2006/10/28 10:35:55 culot Exp $ */ /* * Calcurse - text-based organizer @@ -42,11 +42,10 @@ int todo_new_item(int total, int colr) char *mesg = _("Enter the new ToDo item : "); char *mesg_id = _("Enter the ToDo priority [1 (highest) - 9 (lowest)] :"); - char todo_input[MAX_LENGTH]; + char todo_input[MAX_LENGTH] = ""; status_mesg(mesg, ""); - getstring(swin, colr, todo_input, 0, 1); - if (strlen(todo_input) != 0) { + if (getstring(swin, colr, todo_input, 0, 1) == 0) { while ( (ch < '1') || (ch > '9') ) { status_mesg(mesg_id, ""); ch = wgetch(swin); -- cgit v1.2.3-54-g00ecf