diff options
author | Matt Kraai <kraai@debian.org> | 2001-11-12 16:57:27 +0000 |
---|---|---|
committer | Matt Kraai <kraai@debian.org> | 2001-11-12 16:57:27 +0000 |
commit | c8227639db90c3147ef68f33c98e96b0ab6b01d6 (patch) | |
tree | b704ef3f684a41c7705b5e36dac2127d23d129c4 /sysklogd | |
parent | 357cfc739ed5f5c00ee46a43820a1d02367e3b38 (diff) | |
download | busybox-c8227639db90c3147ef68f33c98e96b0ab6b01d6.tar.gz |
Change strdup calls to xstrdup (patch from Steve Merrifield).
Diffstat (limited to 'sysklogd')
-rw-r--r-- | sysklogd/syslogd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysklogd/syslogd.c b/sysklogd/syslogd.c index 84414439e..625f99715 100644 --- a/sysklogd/syslogd.c +++ b/sysklogd/syslogd.c @@ -589,11 +589,11 @@ extern int syslogd_main(int argc, char **argv) doFork = FALSE; break; case 'O': - logFilePath = strdup(optarg); + logFilePath = xstrdup(optarg); break; #ifdef CONFIG_FEATURE_REMOTE_LOG case 'R': - RemoteHost = strdup(optarg); + RemoteHost = xstrdup(optarg); if ( (p = strchr(RemoteHost, ':'))){ RemotePort = atoi(p+1); *p = '\0'; |