Ticket #4123: bfsaddon.patch

File bfsaddon.patch, 553 bytes (added by idefix, 15 years ago)

Path to allow DriveSetup initialise a BFS volume with a volume name that contains spaces

  • src/add-ons/disk_systems/bfs/InitializeParameterEditor.cpp

     
    5959        // TODO: use libroot driver settings API
    6060        fParameters << "block_size " << size << ";\n";
    6161    }
    62     fParameters << "name " << fNameTC->Text() << ";\n";
     62    fParameters << "name \"" << fNameTC->Text() << "\";\n";
    6363
    6464    return true;
    6565}