Changeset 75945 in vbox for trunk/src/VBox/Frontends/VBoxManage
- Timestamp:
- Dec 4, 2018 12:36:59 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 127154
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManageDHCPServer.cpp
r75918 r75945 115 115 { "-disable", 'd', RTGETOPT_REQ_NOTHING }, // deprecated 116 116 { "--options", 'o', RTGETOPT_REQ_NOTHING }, 117 { "--vm", ' n', RTGETOPT_REQ_STRING}, /* only with -o */118 { "--nic", ' c', RTGETOPT_REQ_UINT8}, /* only with -o and -n*/117 { "--vm", 'M', RTGETOPT_REQ_STRING}, /* only with -o */ 118 { "--nic", 'n', RTGETOPT_REQ_UINT8}, /* only with -o and -M */ 119 119 { "--id", 'i', RTGETOPT_REQ_UINT8}, /* only with -o */ 120 120 { "--value", 'p', RTGETOPT_REQ_STRING}, /* only with -i */ … … 254 254 break; 255 255 256 case ' n': // --vm-name256 case 'M': // --vm 257 257 { 258 258 if (fVmOptionRead) … … 264 264 pszVmName = RTStrDup(ValueUnion.psz); 265 265 } 266 break; /* end of --vm -name*/267 268 case ' c': // --nic266 break; /* end of --vm */ 267 268 case 'n': // --nic 269 269 { 270 270 if (!fVmOptionRead)
Note:
See TracChangeset
for help on using the changeset viewer.