summaryrefslogtreecommitdiff
path: root/alpine/osdep/execview.c
diff options
context:
space:
mode:
Diffstat (limited to 'alpine/osdep/execview.c')
-rw-r--r--alpine/osdep/execview.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/alpine/osdep/execview.c b/alpine/osdep/execview.c
index da7310df..d7087caa 100644
--- a/alpine/osdep/execview.c
+++ b/alpine/osdep/execview.c
@@ -261,7 +261,7 @@ exec_mailcap_cmd(MCAP_CMD_S *mc_cmd, char *image_file, int needsterminal)
p = command = (char *)fs_get((l+1) * sizeof(char));
if(!needsterminal) /* put in background if it doesn't need terminal */
*p++ = '(';
- snprintf(p, l+1-(p-command), "%s ; rm -f %s", cmd, image_file);
+ snprintf(p, l+1-(p-command), "%s ; sleep %d ; rm -f %s", cmd, ps_global->sleep, image_file);
command[l] = '\0';
p += strlen(p);
if(!needsterminal && (p-command)+5 < l){