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

This commit is contained in:
Thomas Schmitt 2016-01-27 17:45:03 +00:00
parent 80225c93a9
commit 224fe43539
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.210034"
#define Cdrskin_timestamP "2016.01.27.174553"