aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/librc-misc.c15
-rw-r--r--src/librc.c7
-rw-r--r--src/librc.h1
-rw-r--r--src/rc.h5
-rw-r--r--src/rc.map1
5 files changed, 4 insertions, 25 deletions
diff --git a/src/librc-misc.c b/src/librc-misc.c
index a8709903..060bee09 100644
--- a/src/librc-misc.c
+++ b/src/librc-misc.c
@@ -166,21 +166,6 @@ bool rc_is_dir (const char *pathname)
}
librc_hidden_def(rc_is_dir)
-bool rc_is_link (const char *pathname)
-{
- struct stat buf;
-
- if (! pathname)
- return (false);
-
- if (lstat (pathname, &buf) == 0)
- return (S_ISLNK (buf.st_mode));
-
- errno = 0;
- return (false);
-}
-librc_hidden_def(rc_is_link)
-
bool rc_is_exec (const char *pathname)
{
struct stat buf;
diff --git a/src/librc.c b/src/librc.c
index 2c0cdcdf..dcbc9872 100644
--- a/src/librc.c
+++ b/src/librc.c
@@ -131,12 +131,13 @@ bool rc_runlevel_exists (const char *runlevel)
}
librc_hidden_def(rc_runlevel_exists)
- /* Resolve a service name to it's full path */
+/* Resolve a service name to it's full path */
char *rc_service_resolve (const char *service)
{
char buffer[PATH_MAX];
char *file;
int r = 0;
+ struct stat buf;
if (! service)
return (NULL);
@@ -145,10 +146,10 @@ char *rc_service_resolve (const char *service)
return (rc_xstrdup (service));
file = rc_strcatpaths (RC_SVCDIR, "started", service, (char *) NULL);
- if (! rc_is_link (file)) {
+ if (lstat (file, &buf) || ! S_ISLNK (buf.st_mode)) {
free (file);
file = rc_strcatpaths (RC_SVCDIR, "inactive", service, (char *) NULL);
- if (! rc_is_link (file)) {
+ if (lstat (file, &buf) || ! S_ISLNK (buf.st_mode)) {
free (file);
file = NULL;
}
diff --git a/src/librc.h b/src/librc.h
index 469b6740..1506f39a 100644
--- a/src/librc.h
+++ b/src/librc.h
@@ -67,7 +67,6 @@ librc_hidden_proto(rc_exists)
librc_hidden_proto(rc_find_pids)
librc_hidden_proto(rc_is_dir)
librc_hidden_proto(rc_is_exec)
-librc_hidden_proto(rc_is_link)
librc_hidden_proto(rc_ls_dir)
librc_hidden_proto(rc_rm_dir)
librc_hidden_proto(rc_runlevel_exists)
diff --git a/src/rc.h b/src/rc.h
index 057d5f7e..f4e2af47 100644
--- a/src/rc.h
+++ b/src/rc.h
@@ -463,11 +463,6 @@ bool rc_env_bool (const char *variable);
* @return true if it exists, otherwise false */
bool rc_exists (const char *pathname);
-/*! Check if the file is a symbolic link or not
- * @param pathname to check
- * @return true if it's a symbolic link, otherwise false */
-bool rc_is_link (const char *pathname);
-
/*! Check if the file is a directory or not
* @param pathname to check
* @return true if it's a directory, otherwise false */
diff --git a/src/rc.map b/src/rc.map
index 98431d41..6c8d8a86 100644
--- a/src/rc.map
+++ b/src/rc.map
@@ -17,7 +17,6 @@ global:
rc_find_pids;
rc_is_dir;
rc_is_exec;
- rc_is_link;
rc_ls_dir;
rc_rm_dir;
rc_runlevel_exists;