Remove unnecesary patch.
For some unknown reason only in case of FreeBSD Scsi_Command(int) ctor should not bind to passed in file descriptor and therefore close() it in dctor. Thanks my prudent typo wich made this unwanted close() nearly impossible anyway.
This commit is contained in:
parent
1d230ba343
commit
e3fbecc6ea
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=99249
2 changed files with 1 additions and 11 deletions
|
@ -7,6 +7,7 @@
|
|||
|
||||
PORTNAME= sound-juicer
|
||||
PORTVERSION= 0.5.9
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= audio gnome
|
||||
MASTER_SITES= http://www.burtonini.com/computing/
|
||||
DIST_SUBDIR= gnome2
|
||||
|
|
|
@ -1,11 +0,0 @@
|
|||
--- src/transport.hxx.orig Wed Jan 21 12:52:37 2004
|
||||
+++ src/transport.hxx Wed Jan 21 12:53:43 2004
|
||||
@@ -386,7 +386,7 @@
|
||||
Scsi_Command(int f)
|
||||
{ char pass[32]; // periph_name is 16 chars long
|
||||
|
||||
- cam=NULL, fd=-1, autoclose=1, filename=NULL;
|
||||
+ cam=NULL, fd=fd, autoclose=1, filename=NULL;
|
||||
|
||||
memset (&ccb,0,sizeof(ccb));
|
||||
ccb.ccb_h.func_code = XPT_GDEVLIST;
|
Loading…
Reference in a new issue