summaryrefslogtreecommitdiff
path: root/ace/IPC_SAP.cpp
diff options
context:
space:
mode:
authorirfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-06-25 14:25:54 +0000
committerirfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-06-25 14:25:54 +0000
commitae9dddeb96386702211eb7a616b38dc7b228b136 (patch)
tree43c1a5743f00d351cba47f23671c9fc5937003bd /ace/IPC_SAP.cpp
parent760221c89fe22132f5faa115670f6cdbf345242b (diff)
downloadATCD-ae9dddeb96386702211eb7a616b38dc7b228b136.tar.gz
Fixed case statement
Diffstat (limited to 'ace/IPC_SAP.cpp')
-rw-r--r--ace/IPC_SAP.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/ace/IPC_SAP.cpp b/ace/IPC_SAP.cpp
index 8c1c904b768..369f955dcfe 100644
--- a/ace/IPC_SAP.cpp
+++ b/ace/IPC_SAP.cpp
@@ -140,7 +140,8 @@ ACE_IPC_SAP::disable (int signum) const
case ACE_NONBLOCK:
if (ACE::clr_flags (this->handle_, ACE_NONBLOCK) == -1)
return -1;
- break;
+ else
+ return 0;
default:
return -1;
}