summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app-misc/cw/files/cw-1.0.16-replace-isastream-with-fcntl.patch')
-rw-r--r--app-misc/cw/files/cw-1.0.16-replace-isastream-with-fcntl.patch20
1 files changed, 20 insertions, 0 deletions
diff --git a/app-misc/cw/files/cw-1.0.16-replace-isastream-with-fcntl.patch b/app-misc/cw/files/cw-1.0.16-replace-isastream-with-fcntl.patch
new file mode 100644
index 000000000000..978c23bb9b71
--- /dev/null
+++ b/app-misc/cw/files/cw-1.0.16-replace-isastream-with-fcntl.patch
@@ -0,0 +1,20 @@
+--- a/src/cw.c
++++ b/src/cw.c
+@@ -1173,7 +1173,7 @@
+ close(master);
+ return(0);
+ }
+- if(isastream(slave)){
++ if(fcntl(slave,F_GETFD) < 0){
+ if(ioctl(slave,I_PUSH,"ptem")<0||ioctl(slave,I_PUSH,"ldterm")<0){
+ close(master);
+ close(slave);
+@@ -1211,7 +1211,7 @@
+ close(master);
+ return(0);
+ }
+- if(isastream(slave)){
++ if(fcntl(slave,F_GETFD) < 0){
+ if(ioctl(slave,I_PUSH,"ptem")<0||ioctl(slave,I_PUSH,"ldterm")<0){
+ close(master);
+ close(slave);