diff options
author | Lukas Fleischer <calcurse@cryptocrack.de> | 2011-08-02 21:42:10 +0200 |
---|---|---|
committer | Lukas Fleischer <calcurse@cryptocrack.de> | 2011-10-05 12:25:47 +0200 |
commit | 2fe7a36aab8c6c934550b2b8dc2074c1af23859a (patch) | |
tree | 31fe32a80e1f15d2bfa457b40ba337c849f3e8df /src/todo.c | |
parent | bc97d60ef2cacfe79875e6c604bf3f0e6d07fbd9 (diff) | |
download | calcurse-2fe7a36aab8c6c934550b2b8dc2074c1af23859a.zip |
Accept variable length note names
Read up to the first blank in note_read() instead of assuming a
fixed-width note file name. Accept everything up to 40 characters (which
is the length of a SHA1 hash in hexadecimal representation).
Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
Diffstat (limited to 'src/todo.c')
-rw-r--r-- | src/todo.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -334,14 +334,14 @@ todo_chg_priority (int action) struct todo *backup; char backup_mesg[BUFSIZ]; int backup_id; - char backup_note[NOTESIZ + 1]; + char backup_note[MAX_NOTESIZ + 1]; int do_chg = 1; backup = todo_get_item (hilt); (void)strncpy (backup_mesg, backup->mesg, strlen (backup->mesg) + 1); backup_id = backup->id; if (backup->note) - (void)strncpy (backup_note, backup->note, NOTESIZ + 1); + (void)strncpy (backup_note, backup->note, MAX_NOTESIZ + 1); else backup_note[0] = '\0'; switch (action) |