Changed debug message which called "stdio:" addresses enumerable

This commit is contained in:
Thomas Schmitt 2011-10-10 13:01:00 +00:00
parent 3862b8d339
commit 39df1cdc4e
2 changed files with 4 additions and 3 deletions

View File

@ -1 +1 @@
#define Cdrskin_timestamP "2011.10.10.125950"
#define Cdrskin_timestamP "2011.10.10.130029"

View File

@ -2120,8 +2120,9 @@ int burn_drive_convert_fs_adr_sub(char *path, char adr[], int *rec_count)
burn_drive_is_enumerable_adr(path)) {
if(strlen(path) >= BURN_DRIVE_ADR_LEN)
return -1;
burn_drive_adr_debug_msg(
"burn_drive_is_enumerable_adr( %s ) is true", path);
if (strncmp(path, "stdio:", 6) != 0)
burn_drive_adr_debug_msg(
"burn_drive_is_enumerable_adr( %s ) is true", path);
strcpy(adr, path);
return 1;
}