Skip to content

Commit

Permalink
code sync change missed (hotfix)
Browse files Browse the repository at this point in the history
  • Loading branch information
JoelBender committed Aug 26, 2016
1 parent 68463cd commit e2437d4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion py25/bacpypes/appservice.py
Original file line number Diff line number Diff line change
Expand Up @@ -763,7 +763,7 @@ def confirmation(self, apdu):
if _debug: ServerSSM._debug(" - segmentation required, %d segments", self.segmentCount)

# make sure we support segmented transmit
if self.segmentationSupported not in ('segmentedTransmit', 'segmentedBoth'):
if self.ssmSAP.segmentationSupported not in ('segmentedTransmit', 'segmentedBoth'):
if _debug: ServerSSM._debug(" - server can't send segmented responses")
abort = self.abort(AbortReason.segmentationNotSupported)
self.reponse(abort)
Expand Down
2 changes: 1 addition & 1 deletion py34/bacpypes/appservice.py
Original file line number Diff line number Diff line change
Expand Up @@ -762,7 +762,7 @@ def confirmation(self, apdu):
if _debug: ServerSSM._debug(" - segmentation required, %d segments", self.segmentCount)

# make sure we support segmented transmit
if self.segmentationSupported not in ('segmentedTransmit', 'segmentedBoth'):
if self.ssmSAP.segmentationSupported not in ('segmentedTransmit', 'segmentedBoth'):
if _debug: ServerSSM._debug(" - server can't send segmented responses")
abort = self.abort(AbortReason.segmentationNotSupported)
self.reponse(abort)
Expand Down

0 comments on commit e2437d4

Please sign in to comment.