buggraveman - Bugs: bug #18370, Wrong label for type of recorder

 
 

bug #18370: Wrong label for type of recorder

Submitter:  makz <makz>
Submitted:  Sat 25 Nov 2006 06:57:55 AM UTC
   
 
Severity:  3 - Normal Status:  None
Assigned to:  None Originator Name: 
Open/Closed:  Open Release:  * 0.3.12
Fixed Release:  None cdrecord version: 
* Mandatory Fields

Add a New Comment Rich Markup
   

Sat 25 Nov 2006 06:57:55 AM UTC, original submission:  

When a recorder can write DVD and CD it appears in the devices list as type DVD Writer. This can be fixed in the function put_devicelabel in matos.c changing this:

if (DRIVE_DVDWRITER(Adrive)) {
    g_strlcpy(Abuf, _("DVD Recorder"), Asizemax);
    ...

into something like this:

if (DRIVE_WRITER(Adrive) && DRIVE_DVDWRITER(Adrive)) {
    g_strlcpy(Abuf, "DVD/CD Recorder", Asizemax);
  }
    else if (DRIVE_DVDWRITER(Adrive)) {
    g_strlcpy(Abuf, _("DVD Recorder"), Asizemax);
    ...

makz <makz>

 

(Note: upload size limit is set to 16384 kB, after insertion of the required escape characters.)

Attach Files:
   
   
Comment:
   

No files currently attached

 

Depends on the following items: None found

Items that depend on this one: None found

 

CC list is empty

 

There are 0 votes so far. Votes easily highlight which items people would like to see resolved in priority, independently of the priority of the item set by tracker managers.

Only logged-in users can vote.

 

No changes have been made to this item

Back to the top

Powered by Savane 3.13-4448.
Corresponding source code