diff options
author | William Hubbs <w.d.hubbs@gmail.com> | 2022-04-07 11:18:56 -0500 |
---|---|---|
committer | William Hubbs <w.d.hubbs@gmail.com> | 2022-04-07 11:18:56 -0500 |
commit | 82e5478d0e115c409b47cd6532e1b21ab0134de7 (patch) | |
tree | 823e18ed06f0606ff4517db70375de528edf350a | |
parent | 391d12db48754861b5cecac92ee3321597ee02c1 (diff) |
start-stop-daemon: remove rc-prefix from file names
-rw-r--r-- | src/start-stop-daemon/meson.build | 2 | ||||
-rw-r--r-- | src/start-stop-daemon/pipes.c (renamed from src/start-stop-daemon/rc-pipes.c) | 4 | ||||
-rw-r--r-- | src/start-stop-daemon/pipes.h (renamed from src/start-stop-daemon/rc-pipes.h) | 0 | ||||
-rw-r--r-- | src/start-stop-daemon/start-stop-daemon.c | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/src/start-stop-daemon/meson.build b/src/start-stop-daemon/meson.build index 39229132..d363ff94 100644 --- a/src/start-stop-daemon/meson.build +++ b/src/start-stop-daemon/meson.build @@ -1,5 +1,5 @@ executable('start-stop-daemon', - ['start-stop-daemon.c', 'rc-pipes.c', misc_c, schedules_c, + ['start-stop-daemon.c', 'pipes.c', misc_c, schedules_c, selinux_c, usage_c, version_h], c_args : [cc_audit_flags, cc_branding_flags, cc_pam_flags, cc_cap_flags, cc_selinux_flags], link_with: [libeinfo, librc], diff --git a/src/start-stop-daemon/rc-pipes.c b/src/start-stop-daemon/pipes.c index b4e60e03..506196d5 100644 --- a/src/start-stop-daemon/rc-pipes.c +++ b/src/start-stop-daemon/pipes.c @@ -1,5 +1,5 @@ /* - * rc-pipes.c + * pipes.c * Helper to handle spawning processes and connecting them to pipes. */ @@ -19,7 +19,7 @@ #include <unistd.h> #include <sys/types.h> -#include "rc-pipes.h" +#include "pipes.h" static const int pipe_read_end = 0; static const int pipe_write_end = 1; diff --git a/src/start-stop-daemon/rc-pipes.h b/src/start-stop-daemon/pipes.h index 861963b7..861963b7 100644 --- a/src/start-stop-daemon/rc-pipes.h +++ b/src/start-stop-daemon/pipes.h diff --git a/src/start-stop-daemon/start-stop-daemon.c b/src/start-stop-daemon/start-stop-daemon.c index 75b9a15c..9117f92f 100644 --- a/src/start-stop-daemon/start-stop-daemon.c +++ b/src/start-stop-daemon/start-stop-daemon.c @@ -71,7 +71,7 @@ static struct pam_conv conv = { NULL, NULL}; #include "queue.h" #include "rc.h" #include "misc.h" -#include "rc-pipes.h" +#include "pipes.h" #include "schedules.h" #include "_usage.h" #include "helpers.h" |