Module Name:    src
Committed By:   snj
Date:           Mon Dec 12 07:49:01 UTC 2016

Modified Files:
        src/usr.sbin/mld6query [netbsd-7]: mld6.c

Log Message:
Pull up following revision(s) (requested by riastradh in ticket #1308):
        usr.sbin/mld6query/mld6.c: revision 1.15
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.14.20.1 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.14.20.1
--- src/usr.sbin/mld6query/mld6.c:1.14	Tue Aug 30 21:18:11 2011
+++ src/usr.sbin/mld6query/mld6.c	Mon Dec 12 07:49:01 2016
@@ -1,4 +1,4 @@
-/*	$NetBSD: mld6.c,v 1.14 2011/08/30 21:18:11 joerg Exp $	*/
+/*	$NetBSD: mld6.c,v 1.14.20.1 2016/12/12 07:49:01 snj 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;

Reply via email to