Changeset 20596 in vbox for trunk/src/VBox/Main/DHCPServerImpl.cpp
- Timestamp:
- Jun 15, 2009 5:45:17 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/DHCPServerImpl.cpp
r20268 r20596 129 129 aNode.setValue <Bstr> ("lowerIP", m.lowerIP); 130 130 aNode.setValue <Bstr> ("upperIP", m.upperIP); 131 aNode.setValue <bool> ("enabled", !!m.enabled); 131 /* To force it back to a numeric value; will otherwise break for 2.2.x. */ 132 aNode.setValue <ULONG> ("enabled", m.enabled); 132 133 133 134 return S_OK;
Note:
See TracChangeset
for help on using the changeset viewer.