Module Name: src
Committed By: christos
Date: Wed Jul 20 23:19:18 UTC 2016
Modified Files:
src/usr.sbin/mld6query: mld6.c
Log Message:
PR/51353: Patrick Mackey: mld6query "-r" option is not recognised
XXX: pullup 7
To generate a diff of this commit:
cvs rdiff -u -r1.14 -r1.15 src/usr.sbin/mld6query/mld6.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/usr.sbin/mld6query/mld6.c
diff -u src/usr.sbin/mld6query/mld6.c:1.14 src/usr.sbin/mld6query/mld6.c:1.15
--- src/usr.sbin/mld6query/mld6.c:1.14 Tue Aug 30 17:18:11 2011
+++ src/usr.sbin/mld6query/mld6.c Wed Jul 20 19:19:18 2016
@@ -1,4 +1,4 @@
-/* $NetBSD: mld6.c,v 1.14 2011/08/30 21:18:11 joerg Exp $ */
+/* $NetBSD: mld6.c,v 1.15 2016/07/20 23:19:18 christos Exp $ */
/* $KAME: mld6.c,v 1.9 2000/12/04 06:29:37 itojun Exp $ */
/*
@@ -81,7 +81,7 @@ main(int argc, char *argv[])
int ch;
type = MLD_LISTENER_QUERY;
- while ((ch = getopt(argc, argv, "d")) != -1) {
+ while ((ch = getopt(argc, argv, "dr")) != -1) {
switch (ch) {
case 'd':
type = MLD_LISTENER_DONE;