summaryrefslogtreecommitdiffstats
path: root/AUTHORS
diff options
context:
space:
mode:
authormatheusbrat@gmail.com <matheusbrat@gmail.com@0039d316-1c4b-4281-b951-d872f2087c98>2013-02-20 15:29:11 +0000
committermatheusbrat@gmail.com <matheusbrat@gmail.com@0039d316-1c4b-4281-b951-d872f2087c98>2013-02-20 15:29:11 +0000
commit0d2efd63ba9a968eca98f671d1d7d96c630e6cd4 (patch)
tree4a1fe6d38667d0dd4cc4fca38a73a2e3c4fa72e3 /AUTHORS
parent3323801b07c12eadd2fd6bc0861206f7f544c7d0 (diff)
downloadchromium_src-0d2efd63ba9a968eca98f671d1d7d96c630e6cd4.zip
chromium_src-0d2efd63ba9a968eca98f671d1d7d96c630e6cd4.tar.gz
chromium_src-0d2efd63ba9a968eca98f671d1d7d96c630e6cd4.tar.bz2
Fixing serial baut/bit rate definition on PostOpen for Linux. By "STANDARD" POSIX defines that B9600, B38400 defined types should be used. Linux define it on /usr/include/rpcsvc/rex.h and it uses numeric sequence increment to enumeration, Mac OS X define it as the same number for example #define B38400 38400. So If you're trying to connect on Linux using a bautrate 38400 for example, the cfsetispeed was called using the 38400 int value, that works for MAC but not for Linux. Code was changed to met the STANDART Bxxxxxx.
Mac OS definition: http://developer.apple.com/library/ios/#documentation/System/Conceptual/ManPages_iPhoneOS/man3/cfsetispeed.3.html Contributed by matheusbrat@gmail.com BUG found by cTn / Shadow6363 @ freenode - Thanks! BUG=176439,176711 TEST=Try to open a connection with different bitrates on Linux and see that is working. More information about how to reproduce it on Bug report. Review URL: https://chromiumcodereview.appspot.com/12294009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@183543 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'AUTHORS')
-rw-r--r--AUTHORS1
1 files changed, 1 insertions, 0 deletions
diff --git a/AUTHORS b/AUTHORS
index abf530b..8c45a86 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -223,3 +223,4 @@ Sungmann Cho <sungmann.cho@gmail.com>
方觉 (Fang Jue) <fangjue23303@gmail.com>
Evan Peterson <evan.peterson.ep@gmail.com>
J. Ryan Stinnett <jryans@chromium.org>
+Matheus Bratfisch <matheusbrat@gmail.com>