~ubuntu-branches/ubuntu/precise/virtualbox/precise-updates

« back to all changes in this revision

Viewing changes to src/VBox/Frontends/VBoxManage/VBoxManageMisc.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Felix Geyer
  • Date: 2011-10-17 23:23:09 UTC
  • mfrom: (3.1.5 sid)
  • Revision ID: james.westby@ubuntu.com-20111017232309-kzm6841lzk61ranj
Tags: 4.1.4-dfsg-1
* New upstream release.
  - Fixes missing icons when using pt_BR locale. (Closes: #507188)
  - Fixes guest additions download url. (Closes: #637349; LP: #840668)
* Refresh patches.
* Drop the vboxmouse x11 driver. The mouse integration is now completely
  handled by the kernel module.
* Restrict dh_pycentral to the virtualbox binary package.
* Merge changes from the Ubuntu package but use them only when built
  on Ubuntu:
  - Add an Apport hook.
  - Add vboxguest modalias to the package control field.
* Pass KBUILD_VERBOSE=2 to kmk.
* Add 36-fix-text-mode.patch to fix text mode when using the vboxvideo driver.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* $Id: VBoxManageMisc.cpp 38191 2011-07-26 17:02:38Z vboxsync $ */
 
1
/* $Id: VBoxManageMisc.cpp $ */
2
2
/** @file
3
3
 * VBoxManage - VirtualBox's command-line interface.
4
4
 */
1070
1070
            return errorSyntax(USAGE_EXTPACK, "No extension pack name was given to \"extpack install\"");
1071
1071
 
1072
1072
        char szPath[RTPATH_MAX];
1073
 
        int vrc = RTPathAbs(a->argv[1], szPath, sizeof(szPath));
 
1073
        int vrc = RTPathAbs(pszName, szPath, sizeof(szPath));
1074
1074
        if (RT_FAILURE(vrc))
1075
 
            return RTMsgErrorExit(RTEXITCODE_FAILURE, "RTPathAbs(%s,,) failed with rc=%Rrc", a->argv[1], vrc);
 
1075
            return RTMsgErrorExit(RTEXITCODE_FAILURE, "RTPathAbs(%s,,) failed with rc=%Rrc", pszName, vrc);
1076
1076
 
1077
1077
        Bstr bstrTarball(szPath);
1078
1078
        Bstr bstrName;