diff options
author | yar <yar@FreeBSD.org> | 2006-08-12 18:07:17 +0000 |
---|---|---|
committer | yar <yar@FreeBSD.org> | 2006-08-12 18:07:17 +0000 |
commit | d58bb87de4375ebb8454a60fdd71885bf0238622 (patch) | |
tree | 89f386f52ca127269b529f96442b973449a9b830 /sbin/ifconfig | |
parent | e65c3fa75dc500ec0a75a2fd7f5a80e7b4951f5d (diff) | |
download | FreeBSD-src-d58bb87de4375ebb8454a60fdd71885bf0238622.zip FreeBSD-src-d58bb87de4375ebb8454a60fdd71885bf0238622.tar.gz |
Restore the "plumb" compatibility command, which was lost
due to the recent change by sam@ to clone operations in ifconfig(8).
Diffstat (limited to 'sbin/ifconfig')
-rw-r--r-- | sbin/ifconfig/ifclone.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sbin/ifconfig/ifclone.c b/sbin/ifconfig/ifclone.c index 0dafac4..3fda062 100644 --- a/sbin/ifconfig/ifclone.c +++ b/sbin/ifconfig/ifclone.c @@ -145,6 +145,7 @@ DECL_CMD_FUNC(clone_destroy, arg, d) static struct cmd clone_cmds[] = { DEF_CMD("create", 0, clone_create), DEF_CMD("destroy", 0, clone_destroy), + DEF_CMD("plumb", 0, clone_create), DEF_CMD("unplumb", 0, clone_destroy), }; |