serialposix: _set_rs485_mode() tries to read non-existing attribute, fixes 85

- update changelog
diff --git a/CHANGES.rst b/CHANGES.rst
index 5326dea..5c4a9fd 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -600,4 +600,8 @@
 Bugfixes:
 
 - [#68] aio: catch errors and close connection
+- [#87] hexlify: update codec for Python 2
 
+Bugfixes (posix):
+
+- [#85] serialposix.py _set_rs485_mode() tries to read non-existing rs485_settings.delay_rts_before_send
diff --git a/serial/serialposix.py b/serial/serialposix.py
index ae113c2..2dca984 100644
--- a/serial/serialposix.py
+++ b/serial/serialposix.py
@@ -144,8 +144,8 @@
                         buf[0] |= SER_RS485_RTS_AFTER_SEND
                     else:
                         buf[0] &= ~SER_RS485_RTS_AFTER_SEND
-                    buf[1] = int(rs485_settings.delay_rts_before_send * 1000)
-                    buf[2] = int(rs485_settings.delay_rts_after_send * 1000)
+                    buf[1] = int(rs485_settings.delay_before_tx * 1000)
+                    buf[2] = int(rs485_settings.delay_before_rx * 1000)
                 else:
                     buf[0] = 0  # clear SER_RS485_ENABLED
                 fcntl.ioctl(self.fd, TIOCSRS485, buf)