freebsd-ports/palm/pilot-link/files/patch-src_read-todos.c
Jimmy Olgeni e4d7b1ff25 The read-todos utility prints "No Date" when the todo item has no
date assigned, but the trailing "\n" was missing.
2004-02-02 22:17:03 +00:00

15 lines
376 B
C

$FreeBSD$
--- src/read-todos.c.orig Mon Feb 2 23:09:47 2004
+++ src/read-todos.c Mon Feb 2 23:10:22 2004
@@ -184,7 +184,7 @@
printf("Priority: %d\n", t.priority);
printf("Completed: %s\n", t.complete ? "Yes" : "No");
if (t.indefinite)
- printf("Due: No Date");
+ printf("Due: No Date\n");
else
printf("Due: %s", asctime(&t.due));
if (t.description)