From 478b2762e61cee2aa2b073e37cfcdaf220692acf Mon Sep 17 00:00:00 2001 From: Frederic Culot Date: Sun, 30 Dec 2007 16:27:58 +0000 Subject: Ability to attach notes to todo items added --- src/notify.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'src/notify.c') diff --git a/src/notify.c b/src/notify.c index b4b60b7..3531a02 100755 --- a/src/notify.c +++ b/src/notify.c @@ -1,4 +1,4 @@ -/* $calcurse: notify.c,v 1.22 2007/10/21 13:41:51 culot Exp $ */ +/* $calcurse: notify.c,v 1.23 2007/12/30 16:27:59 culot Exp $ */ /* * Calcurse - text-based organizer @@ -132,11 +132,13 @@ launch_cmd(char *cmd, char *shell) pid = fork(); if (pid < 0) - ierror(_("FATAL ERROR in launch_cmd: could not fork")); + ierror(_("FATAL ERROR in launch_cmd: could not fork"), + IERROR_WARN); else if (pid == 0) /* Child: launch user defined command */ if (execlp(shell, shell, "-c", cmd, (char *)NULL) < 0) ierror(_("FATAL ERROR in launch_cmd: could not " - "launch user command")); + "launch user command"), + IERROR_WARN); } /* -- cgit v1.2.3-54-g00ecf