summaryrefslogtreecommitdiffstats
path: root/pager.c
diff options
context:
space:
mode:
authorThomas Roessler <roessler@does-not-exist.org>2001-01-08 16:57:20 +0000
committerThomas Roessler <roessler@does-not-exist.org>2001-01-08 16:57:20 +0000
commitd5a336245304225932d3b5d18f82336bebb01efe (patch)
treead754228c008f9b1a3dc0ff8b60efe1d326c1927 /pager.c
parent0fc518a9da9ec8af36af17fbcb305cd6abd5d50e (diff)
Fix and/or check more fishy code.
Diffstat (limited to 'pager.c')
-rw-r--r--pager.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/pager.c b/pager.c
index eb4d9b56..ed4f2c03 100644
--- a/pager.c
+++ b/pager.c
@@ -1454,14 +1454,14 @@ mutt_pager (const char *banner, const char *fname, int flags, pager_t *extra)
if (IsHeader (extra))
{
mutt_compile_help (buffer, sizeof (buffer), MENU_PAGER, PagerHelpExtra);
- strcat (helpstr, " ");
- strcat (helpstr, buffer);
+ strcat (helpstr, " "); /* __STRCAT_CHECKED__ */ /* we don't seem to have any user-supplied data here */
+ strcat (helpstr, buffer); /* __STRCAT_CHECKED__ */
}
if (!InHelp)
{
mutt_make_help (buffer, sizeof (buffer), _("Help"), MENU_PAGER, OP_HELP);
- strcat (helpstr, " ");
- strcat (helpstr, buffer);
+ strcat (helpstr, " "); /* __STRCAT_CHECKED__ */ /* we don't seem to have any user-supplied data here */
+ strcat (helpstr, buffer); /* __STRCAT_CHECKED__ */
}
while (ch != -1)