Skip to content

Commit

Permalink
openrc-shutdown: remove rc- prefix from file names
Browse files Browse the repository at this point in the history
  • Loading branch information
williamh committed Apr 10, 2022
1 parent 39eb338 commit 0b3f875
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/openrc-shutdown/meson.build
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
if os == 'Linux'
executable('openrc-shutdown',
['openrc-shutdown.c', 'broadcast.c', 'rc-sysvinit.c', misc_c,
['openrc-shutdown.c', 'broadcast.c', 'sysvinit.c', misc_c,
usage_c, wtmp_c, version_h],
c_args : cc_branding_flags,
include_directories: [incdir, einfo_incdir, rc_incdir],
Expand Down
2 changes: 1 addition & 1 deletion src/openrc-shutdown/openrc-shutdown.c
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
#include "rc.h"
#include "helpers.h"
#include "misc.h"
#include "rc-sysvinit.h"
#include "sysvinit.h"
#include "wtmp.h"
#include "_usage.h"

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* rc-sysvinit.c
* sysvinit.c
* Helper to send a runlevel change to sysvinit
*/

Expand All @@ -24,7 +24,7 @@
#include <sys/types.h>

#include "einfo.h"
#include "rc-sysvinit.h"
#include "sysvinit.h"

static void sysvinit_send_cmd(struct init_request *request)
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* rc-sysvinit.h - Interface to communicate with sysvinit via /run/initctl.
* sysvinit.h - Interface to communicate with sysvinit via /run/initctl.
*/

/*
Expand Down

0 comments on commit 0b3f875

Please sign in to comment.