diff options
Diffstat (limited to 'src/VBox/Main/src-server/ApplianceImpl.cpp')
-rw-r--r-- | src/VBox/Main/src-server/ApplianceImpl.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/VBox/Main/src-server/ApplianceImpl.cpp b/src/VBox/Main/src-server/ApplianceImpl.cpp index 25e4ff371..709c0d0cb 100644 --- a/src/VBox/Main/src-server/ApplianceImpl.cpp +++ b/src/VBox/Main/src-server/ApplianceImpl.cpp @@ -1,11 +1,11 @@ -/* $Id: ApplianceImpl.cpp $ */ +/* $Id: ApplianceImpl.cpp 37200 2011-05-24 15:34:06Z vboxsync $ */ /** @file * * IAppliance and IVirtualSystem COM class implementations. */ /* - * Copyright (C) 2008-2010 Oracle Corporation + * Copyright (C) 2008-2011 Oracle Corporation * * This file is part of VirtualBox Open Source Edition (OSE), as * available from http://www.virtualbox.org. This file is free software; @@ -266,7 +266,7 @@ Utf8Str convertNetworkAttachmentTypeToString(NetworkAttachmentType_T type) case NetworkAttachmentType_Bridged: strType = "Bridged"; break; case NetworkAttachmentType_Internal: strType = "Internal"; break; case NetworkAttachmentType_HostOnly: strType = "HostOnly"; break; - case NetworkAttachmentType_VDE: strType = "VDE"; break; + case NetworkAttachmentType_Generic: strType = "Generic"; break; case NetworkAttachmentType_Null: strType = "Null"; break; } return strType; |