start-stop-daemon: remove rc-prefix from file names

This commit is contained in:
William Hubbs 2022-04-07 11:18:56 -05:00
parent 391d12db48
commit 82e5478d0e
4 changed files with 4 additions and 4 deletions

View File

@ -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],

View File

@ -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;

View File

@ -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"