VirtualBox

Changeset 94751 in vbox


Ignore:
Timestamp:
Apr 28, 2022 7:12:56 PM (3 years ago)
Author:
vboxsync
Message:

Main/Unattended: bugref:9781. build fix.

Location:
trunk/src/VBox/Main
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/include/UnattendedInstaller.h

    r94749 r94751  
    593593     * @returns COM status code
    594594     * @param   pEditor                  Editor with the menu config. file loaded and parsed.
    595      * @param   pszMenuConfigFileName    Name of the menu file.
    596      */
    597     HRESULT editDebianMenuCfg(GeneralTextScript *pEditor, const char *pszMenuConfigFileName);
     595     */
     596    HRESULT editDebianMenuCfg(GeneralTextScript *pEditor);
    598597    /**
    599598     * Performs basic edits on grub configuration file (grub.cfg).
     
    601600     * @returns COM status code
    602601     * @param   pEditor                 Editor with the grub.cfg file loaded and parsed.
    603      * @param   pszGrubConfigFileName   Name of the grub config file.
    604      */
    605     HRESULT editDebianGrubCfg(GeneralTextScript *pEditor, const char *pszGrubConfigFileName);
     602     */
     603    HRESULT editDebianGrubCfg(GeneralTextScript *pEditor);
    606604
    607605    /**
  • trunk/src/VBox/Main/src-server/UnattendedInstaller.cpp

    r94748 r94751  
    10881088        {
    10891089            if (strMenuConfigFileName.compare("/boot/grub/grub.cfg", RTCString::CaseInsensitive) == 0)
    1090                 hrc = editDebianGrubCfg(&Editor, strMenuConfigFileName.c_str());
     1090                hrc = editDebianGrubCfg(&Editor);
    10911091            else
    1092                 hrc = editDebianMenuCfg(&Editor, strMenuConfigFileName.c_str());
     1092                hrc = editDebianMenuCfg(&Editor);
    10931093        }
    10941094        if (SUCCEEDED(hrc))
     
    11561156}
    11571157
    1158 HRESULT UnattendedDebianInstaller::editDebianMenuCfg(GeneralTextScript *pEditor, const char *pszMenuConfigFileName)
     1158HRESULT UnattendedDebianInstaller::editDebianMenuCfg(GeneralTextScript *pEditor)
    11591159{
    11601160    /*
     
    11911191        }
    11921192        if (!fLabelFound)
    1193             hrc = VBOX_E_FILE_ERROR;
     1193            hrc = E_FAIL;;
    11941194
    11951195        if (SUCCEEDED(hrc))
     
    12141214        }
    12151215        if (FAILED(hrc))
    1216             return mpParent->setErrorBoth(VBOX_E_FILE_ERROR, hrc,
    1217                                           tr("Failed to edit menu configuration file: \"%s\": (%Rrc)"),
    1218                                           pszMenuConfigFileName, hrc);
     1216            return hrc;
    12191217    }
    12201218    catch (std::bad_alloc &)
     
    12251223}
    12261224
    1227 HRESULT UnattendedDebianInstaller::editDebianGrubCfg(GeneralTextScript *pEditor, const char *pszGrubConfigFileName)
     1225HRESULT UnattendedDebianInstaller::editDebianGrubCfg(GeneralTextScript *pEditor)
    12281226{
    12291227    /* Default menu entry of grub.cfg is set in /etc/deafult/grub file. */
     
    12731271                    }
    12741272                    if (!fSecondWord)
    1275                         hrc = VBOX_E_FILE_ERROR;
     1273                        hrc = E_FAIL;
    12761274
    12771275                    if (SUCCEEDED(hrc))
     
    12911289                    }
    12921290                    if (FAILED(hrc))
    1293                         return mpParent->setErrorBoth(VBOX_E_FILE_ERROR, hrc,
    1294                                                       tr("Failed to edit grub configuration file: \"%s\": (%Rrc)"),
    1295                                                       pszGrubConfigFileName, hrc);
     1291                        return hrc;
    12961292                }
    12971293            }
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette