From b17475128de9c548fb2727256817345aa1f9273a Mon Sep 17 00:00:00 2001 From: Baptiste Jonglez Date: Sun, 13 May 2012 14:09:22 +0200 Subject: Various fixes. Use snprintf(3) instead of sprintf(3) and fix a missing i18n tag. Signed-off-by: Baptiste Jonglez Signed-off-by: Lukas Fleischer --- src/day.c | 2 +- src/utils.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/day.c b/src/day.c index d74283f..43a5aec 100644 --- a/src/day.c +++ b/src/day.c @@ -742,7 +742,7 @@ update_rept (struct rpt **rpt, const long start) const char *msg_wrong_time = _("Invalid time: start time must be before end time!"); const char *msg_wrong_date = _("The entered date is not valid."); const char *msg_fmts = - "Possible formats are [%s] or '0' for an endless repetetition"; + _("Possible formats are [%s] or '0' for an endless repetetition"); const char *msg_enter = _("Press [Enter] to continue"); switch (status_ask_choice (msg_rpt_asktype, msg_rpt_choice, 4)) diff --git a/src/utils.c b/src/utils.c index 5359538..1d27bce 100644 --- a/src/utils.c +++ b/src/utils.c @@ -208,7 +208,7 @@ status_ask_choice(const char *message, const char choice[], int nb_choice) for (i = 1; i <= nb_choice; i++) { - sprintf (tmp, (i == nb_choice) ? "%c] " : "%c/", choice[i]); + snprintf (tmp, BUFSIZ, (i == nb_choice) ? "%c] " : "%c/", choice[i]); strcat (avail_choice, tmp); } @@ -262,7 +262,7 @@ status_ask_simplechoice (const char *prefix, const char *choice[], for (i = 0; i < nb_choice; i++) { - sprintf (tmp, ((i + 1) == nb_choice) ? "(%d) %s?" : "(%d) %s, ", + snprintf (tmp, BUFSIZ, ((i + 1) == nb_choice) ? "(%d) %s?" : "(%d) %s, ", (i + 1), _(choice[i])); strcat (choicestr, tmp); } -- cgit v1.2.3-54-g00ecf