Author: jhb
Date: Thu Dec  1 15:01:23 2011
New Revision: 228181
URL: http://svn.freebsd.org/changeset/base/228181

Log:
  If the -d flag is specified, ignore any new values specified and only
  display the descriptions of specified nodes.
  
  Reported by:  Jason Hellenthal  jhell of dataix net
  MFC after:    2 weeks

Modified:
  head/sbin/sysctl/sysctl.c

Modified: head/sbin/sysctl/sysctl.c
==============================================================================
--- head/sbin/sysctl/sysctl.c   Thu Dec  1 13:53:33 2011        (r228180)
+++ head/sbin/sysctl/sysctl.c   Thu Dec  1 15:01:23 2011        (r228181)
@@ -201,7 +201,7 @@ parse(char *string)
        if (oidfmt(mib, len, fmt, &kind))
                err(1, "couldn't find format of oid '%s'", bufp);
 
-       if (newval == NULL) {
+       if (newval == NULL || dflag) {
                if ((kind & CTLTYPE) == CTLTYPE_NODE) {
                        if (dflag) {
                                i = show_var(mib, len);
_______________________________________________
svn-src-head@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to