https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=208169

Conrad E. Meyer <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |[email protected]

--- Comment #1 from Conrad E. Meyer <[email protected]> ---
Given the manual page description, I think I would instead just ignore the
second lflag.  Like so:

--- a/bin/df/df.c
+++ b/bin/df/df.c
@@ -166,6 +166,9 @@ main(int argc, char *argv[])
                        hflag = 0;
                        break;
                case 'l':
+                       /* Ignore duplicate -l */
+                       if (lflag)
+                               break;
                        if (vfslist != NULL)
                                xo_errx(1, "-l and -t are mutually
exclusive.");
                        vfslist = makevfslist(makenetvfslist());

-- 
You are receiving this mail because:
You are the assignee for the bug.
_______________________________________________
[email protected] mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "[email protected]"

Reply via email to