summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarel Zak <kzak@redhat.com>2015-03-13 13:35:20 +0100
committerKarel Zak <kzak@redhat.com>2015-03-13 13:35:20 +0100
commit6caffaab9d27af0479be6088ac902b862f4ae491 (patch)
tree7050e2d905c4d48f47b2b4245daf18b28294f78b
parent03832f6db9ab8cb8d3b9f31e0a515c4665c103ff (diff)
downloadutil-linux-6caffaab9d27af0479be6088ac902b862f4ae491.tar.gz
logger: use xstrdup()
Signed-off-by: Karel Zak <kzak@redhat.com>
-rw-r--r--misc-utils/logger.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/misc-utils/logger.c b/misc-utils/logger.c
index 9c6d6a216..ab734ddd6 100644
--- a/misc-utils/logger.c
+++ b/misc-utils/logger.c
@@ -407,7 +407,7 @@ static void syslog_rfc5424_header(struct logger_ctl *const ctl)
} else
err(EXIT_FAILURE, _("localtime() failed"));
} else
- time = strdup(NILVALUE);
+ time = xstrdup(NILVALUE);
char *hostname;
if (ctl->rfc5424_host) {
@@ -418,7 +418,7 @@ static void syslog_rfc5424_header(struct logger_ctl *const ctl)
errx(EXIT_FAILURE, _("hostname '%s' is too long"),
hostname);
} else
- hostname = strdup(NILVALUE);
+ hostname = xstrdup(NILVALUE);
char *const app_name = ctl->tag;
if (48 < strlen(ctl->tag))
@@ -428,9 +428,9 @@ static void syslog_rfc5424_header(struct logger_ctl *const ctl)
if (ctl->pid)
xasprintf(&procid, "%d", ctl->pid);
else
- procid = strdup(NILVALUE);
+ procid = xstrdup(NILVALUE);
- char *const msgid = strdup((ctl->msgid) ? ctl->msgid : NILVALUE);
+ char *const msgid = xstrdup((ctl->msgid) ? ctl->msgid : NILVALUE);
char *structured_data;
if (ctl->rfc5424_tq) {