summaryrefslogtreecommitdiff
path: root/src/actions.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/actions.c')
-rw-r--r--src/actions.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/actions.c b/src/actions.c
index fa5af52..27a13f3 100644
--- a/src/actions.c
+++ b/src/actions.c
@@ -2691,11 +2691,10 @@ cmd_time (int interactive UNUSED, struct cmdarg **args UNUSED)
time_t timep;
cmdret *ret;
- timep = time(NULL);
- tmp = ctime(&timep);
- msg = xmalloc (strlen (tmp));
- strncpy(msg, tmp, strlen (tmp) - 1); /* Remove the newline */
- msg[strlen(tmp) - 1] = 0;
+ timep = time (NULL);
+ tmp = ctime (&timep);
+ msg = xstrdup (tmp);
+ msg[strcspn (msg, "\n")] = '\0' ; /* Remove the newline */
ret = cmdret_new (RET_SUCCESS, "%s", msg);
free (msg);