Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 30 Mar 2008 19:58:37 GMT
From:      Sam Leffler <sam@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 139004 for review
Message-ID:  <200803301958.m2UJwbCX012742@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=139004

Change 139004 by sam@sam_ebb on 2008/03/30 19:58:18

	must mark clone/plumb cmds as clone parameter so we don't push
	the clone request callback too soon

Affected files ...

.. //depot/projects/vap/sbin/ifconfig/ifclone.c#5 edit

Differences ...

==== //depot/projects/vap/sbin/ifconfig/ifclone.c#5 (text+ko) ====

@@ -143,9 +143,9 @@
 }
 
 static struct cmd clone_cmds[] = {
-	DEF_CMD("create",	0,	clone_create),
+	DEF_CLONE_CMD("create",	0,	clone_create),
 	DEF_CMD("destroy",	0,	clone_destroy),
-	DEF_CMD("plumb",	0,	clone_create),
+	DEF_CLONE_CMD("plumb",	0,	clone_create),
 	DEF_CMD("unplumb",	0,	clone_destroy),
 };
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200803301958.m2UJwbCX012742>