Bug fix: cdrskin "failed to attach fifo" when burning from stdin. Regression of 1.4.2, rev 5522.

This commit is contained in:
Thomas Schmitt 2016-01-29 11:38:29 +00:00
parent ca234d2b61
commit 2a7641b5d8
2 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
/*
cdrskin.c , Copyright 2006-2015 Thomas Schmitt <scdbackup@gmx.net>
cdrskin.c , Copyright 2006-2016 Thomas Schmitt <scdbackup@gmx.net>
Provided under GPL version 2 or later.
A cdrecord compatible command line interface for libburn.
@ -1446,7 +1446,7 @@ int Cdrtrack_open_source_path(struct CdrtracK *track, int *fd, int flag)
track->fixed_size= Cdrtrack_minimum_sizE*track->sector_size;
}
}
return((*fd >= 0) * (2 * self_opened));
return((*fd >= 0) * (1 + self_opened));
}

View File

@ -1 +1 @@
#define Cdrskin_timestamP "2015.11.28.120001"
#define Cdrskin_timestamP "2016.01.29.100001"