diff options
author | Bryan Cantrill <bryan@joyent.com> | 2012-10-24 16:13:38 +0000 |
---|---|---|
committer | Bryan Cantrill <bryan@joyent.com> | 2012-10-24 16:13:38 +0000 |
commit | d07645b17dd983d7abe043763251310332d4c971 (patch) | |
tree | d0f868f09b07fa8e1a5d479f8d2c8b427394ccd7 | |
parent | 6ab6198a2608e8eaad25952200629bdcea12eb51 (diff) | |
download | illumos-joyent-d07645b17dd983d7abe043763251310332d4c971.tar.gz |
OS-1634 svcs -ZL does not work when a pattern is specified
-rw-r--r-- | usr/src/cmd/svc/svcs/svcs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/src/cmd/svc/svcs/svcs.c b/usr/src/cmd/svc/svcs/svcs.c index 8f714f7419..88c9c2615e 100644 --- a/usr/src/cmd/svc/svcs/svcs.c +++ b/usr/src/cmd/svc/svcs/svcs.c @@ -3789,7 +3789,7 @@ again: if (opt_mode == 'L') { if ((err = scf_walk_fmri(h, argc, argv, SCF_WALK_MULTIPLE, - print_log, NULL, &exit_status, uu_warn)) != 0) { + print_log, NULL, errarg, errfunc)) != 0) { uu_warn(gettext("failed to iterate over " "instances: %s\n"), scf_strerror(err)); exit_status = UU_EXIT_FATAL; |