about summary refs log tree commit diff
path: root/debian/patches/05-response-buffer-filled.patch
diff options
context:
space:
mode:
authorMichael Biebl <biebl@debian.org>2009-08-17 21:34:38 +0000
committerMichael Biebl <biebl@debian.org>2009-08-17 21:34:38 +0000
commitfba09b2ea9a3c4d861a06886d8f668b8e6a6d412 (patch)
treedf31ea4e2b7e0ee999d1b55cabc586b9c0e28644 /debian/patches/05-response-buffer-filled.patch
parent850be32402cbc83e43ab817e50df0acfe4ad1433 (diff)
Just fix our patch 04-struct_termios.patch instead of adding a new patch.
git-svn-id: svn+ssh://svn.debian.org/svn/pkg-utopia/packages/unstable/networkmanager@3221 ceb527fc-18e6-0310-9fe2-813c157c29e7
Diffstat (limited to 'debian/patches/05-response-buffer-filled.patch')
-rw-r--r--debian/patches/05-response-buffer-filled.patch19
1 files changed, 0 insertions, 19 deletions
diff --git a/debian/patches/05-response-buffer-filled.patch b/debian/patches/05-response-buffer-filled.patch
deleted file mode 100644
index 3a8a731a..00000000
--- a/debian/patches/05-response-buffer-filled.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-commit 793cc30b5d20d728719c568f5bfac98f3bca3dca
-Author: Robert Piasek <robert@piasek.co.uk>
-Date:   2009-06-22 11:57:28 -0400
-
-    serial: fix serial port settings bug caused by 31a34fa7ffbceb79d5e6c16158e5dcce285dcff1
-
-diff --git a/src/nm-serial-device.c b/src/nm-serial-device.c
-index 54dd176..ad481d3 100644
---- a/src/nm-serial-device.c
-+++ b/src/nm-serial-device.c
-@@ -368,7 +368,7 @@ config_fd (NMSerialDevice *device, NMSettingSerial *setting)
- 	stbuf.c_cflag &= ~(CBAUD | CSIZE | CSTOPB | CLOCAL | PARENB);
- 	stbuf.c_cflag |= (speed | bits | CREAD | 0 | parity | stopbits);
- 
--	if (tcgetattr (priv->fd, &stbuf) < 0) {
-+	if (tcsetattr (priv->fd, TCSANOW, &stbuf) < 0) {
- 		nm_warning ("(%s) cannot control device (errno %d)",
- 		            nm_device_get_iface (NM_DEVICE (device)), errno);
- 		return FALSE;