diff options
author | Roy Marples <roy@marples.name> | 2008-02-11 20:14:09 +0000 |
---|---|---|
committer | Roy Marples <roy@marples.name> | 2008-02-11 20:14:09 +0000 |
commit | 567f8e33f2f7d951237996b6b2dd60189515754d (patch) | |
tree | 8a44f7ff0da9e5022bdbb519a08fd5fc975838b3 /src/rc/checkpath.c | |
parent | 5e470afb5251fdd51188999e23a7d9c2bbfe657c (diff) |
Just use the extern applet var.
Diffstat (limited to 'src/rc/checkpath.c')
-rw-r--r-- | src/rc/checkpath.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/rc/checkpath.c b/src/rc/checkpath.c index 51780329..9352535b 100644 --- a/src/rc/checkpath.c +++ b/src/rc/checkpath.c @@ -46,7 +46,7 @@ #include "einfo.h" #include "rc-misc.h" -static const char *applet; +extern const char *applet; static int do_check (char *path, uid_t uid, gid_t gid, mode_t mode, int file) { @@ -188,8 +188,6 @@ int checkpath (int argc, char **argv) bool file = 0; int retval = EXIT_SUCCESS; - applet = basename_c (argv[0]); - while ((opt = getopt_long (argc, argv, getoptstring, longopts, (int *) 0)) != -1) { |