summaryrefslogtreecommitdiffstats
path: root/usr.bin
diff options
context:
space:
mode:
authorgad <gad@FreeBSD.org>2004-03-26 19:29:57 +0000
committergad <gad@FreeBSD.org>2004-03-26 19:29:57 +0000
commitb44e46cbe7c7547a45789778ba2daaf00635ae02 (patch)
treef90260192c5d76af4fdf06526d8d257933678a44 /usr.bin
parentb44c8fb7c57ffb40978a017e81b44565fe5fb811 (diff)
downloadFreeBSD-src-b44e46cbe7c7547a45789778ba2daaf00635ae02.zip
FreeBSD-src-b44e46cbe7c7547a45789778ba2daaf00635ae02.tar.gz
Remove the _PATH_DEVNULL setting for "swapf". From the kvm_open(3)
man page: The swapfile argument is currently unused. Noticed by: ru
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/pkill/pkill.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/pkill/pkill.c b/usr.bin/pkill/pkill.c
index c5226fb..4c6c8eb 100644
--- a/usr.bin/pkill/pkill.c
+++ b/usr.bin/pkill/pkill.c
@@ -128,7 +128,7 @@ main(int argc, char **argv)
extern char *optarg;
extern int optind;
char buf[_POSIX2_LINE_MAX], *mstr, **pargv, *p, *q;
- const char *execf, *coref, *swapf;
+ const char *execf, *coref;
int debug_opt;
int i, ch, bestidx, rv, criteria, drop_privs;
size_t jsz;
@@ -171,7 +171,7 @@ main(int argc, char **argv)
criteria = 0;
debug_opt = 0;
drop_privs = 0;
- execf = coref = swapf = _PATH_DEVNULL;
+ execf = coref = _PATH_DEVNULL;
while ((ch = getopt(argc, argv, "DG:M:N:P:U:d:fg:lns:t:u:vx")) != -1)
switch (ch) {
@@ -263,7 +263,7 @@ main(int argc, char **argv)
/*
* Retrieve the list of running processes from the kernel.
*/
- kd = kvm_openfiles(execf, coref, swapf, O_RDONLY, buf);
+ kd = kvm_openfiles(execf, coref, NULL, O_RDONLY, buf);
if (kd == NULL)
errx(STATUS_ERROR, "kvm_openfiles(): %s", buf);
OpenPOWER on IntegriCloud