aboutsummaryrefslogtreecommitdiff
path: root/src/librc-daemon.c
diff options
context:
space:
mode:
authorRoy Marples <roy@marples.name>2007-10-08 11:11:21 +0000
committerRoy Marples <roy@marples.name>2007-10-08 11:11:21 +0000
commita89ceb7e2c994e2a3907d9c906d99021a6e15788 (patch)
tree5725e344e99804953472a29598eb8c3e04d95c7a /src/librc-daemon.c
parente7dab9bb91344476603cc01a9db95c891e01085d (diff)
Punt rc_ from xstrdup, xalloc, xrealloc and exists as they're not in librc anymore
Diffstat (limited to 'src/librc-daemon.c')
-rw-r--r--src/librc-daemon.c30
1 files changed, 15 insertions, 15 deletions
diff --git a/src/librc-daemon.c b/src/librc-daemon.c
index ebad6a54..ca1a39ef 100644
--- a/src/librc-daemon.c
+++ b/src/librc-daemon.c
@@ -304,31 +304,31 @@ bool rc_service_daemon_set (const char *service, const char *exec,
errno = EINVAL;
return (false);
}
- svc = rc_xstrdup (service);
+ svc = strdup (service);
dirpath = rc_strcatpaths (RC_SVCDIR, "daemons",
basename (svc), (char *) NULL);
free (svc);
if (exec) {
i = strlen (exec) + 6;
- mexec = rc_xmalloc (sizeof (char *) * i);
+ mexec = xmalloc (sizeof (char *) * i);
snprintf (mexec, i, "exec=%s", exec);
} else
- mexec = rc_xstrdup ("exec=");
+ mexec = strdup ("exec=");
if (name) {
i = strlen (name) + 6;
- mname = rc_xmalloc (sizeof (char *) * i);
+ mname = xmalloc (sizeof (char *) * i);
snprintf (mname, i, "name=%s", name);
} else
- mname = rc_xstrdup ("name=");
+ mname = strdup ("name=");
if (pidfile) {
i = strlen (pidfile) + 9;
- mpidfile = rc_xmalloc (sizeof (char *) * i);
+ mpidfile = xmalloc (sizeof (char *) * i);
snprintf (mpidfile, i, "pidfile=%s", pidfile);
} else
- mpidfile = rc_xstrdup ("pidfile=");
+ mpidfile = strdup ("pidfile=");
/* Regardless, erase any existing daemon info */
if ((dp = opendir (dirpath))) {
@@ -398,18 +398,18 @@ bool rc_service_started_daemon (const char *service, const char *exec,
if (! service || ! exec)
return (false);
- svc = rc_xstrdup (service);
+ svc = strdup (service);
dirpath = rc_strcatpaths (RC_SVCDIR, "daemons", basename (svc),
(char *) NULL);
free (svc);
i = strlen (exec) + 6;
- mexec = rc_xmalloc (sizeof (char *) * i);
+ mexec = xmalloc (sizeof (char *) * i);
snprintf (mexec, i, "exec=%s", exec);
if (indx > 0) {
int len = sizeof (char *) * 10;
- file = rc_xmalloc (len);
+ file = xmalloc (len);
snprintf (file, len, "%03d", indx);
retval = _match_daemon (dirpath, file, mexec, NULL, NULL);
free (file);
@@ -453,7 +453,7 @@ bool rc_service_daemons_crashed (const char *service)
if (! service)
return (false);
- svc = rc_xstrdup (service);
+ svc = strdup (service);
dirpath = rc_strcatpaths (RC_SVCDIR, "daemons", basename (svc),
(char *) NULL);
free (svc);
@@ -488,22 +488,22 @@ bool rc_service_daemons_crashed (const char *service)
if (strcmp (token, "exec") == 0) {
if (exec)
free (exec);
- exec = rc_xstrdup (p);
+ exec = strdup (p);
} else if (strcmp (token, "name") == 0) {
if (name)
free (name);
- name = rc_xstrdup (p);
+ name = strdup (p);
} else if (strcmp (token, "pidfile") == 0) {
if (pidfile)
free (pidfile);
- pidfile = rc_xstrdup (p);
+ pidfile = strdup (p);
}
}
fclose (fp);
pid = 0;
if (pidfile) {
- if (! rc_exists (pidfile)) {
+ if (! exists (pidfile)) {
retval = true;
break;
}