Package: putty
Version: 0.60+2010-02-20-1.1
Severity: normal
Tags: patch
Putty does not allow to use baudrate 500000. The attached patch does fix this.
The patch was also sent upstream to [email protected].
-- System Information:
Debian Release: squeeze/sid
APT prefers testing
APT policy: (990, 'testing'), (500, 'unstable'), (50, 'experimental')
Architecture: i386 (i686)
Kernel: Linux 2.6.32-5-686-bigmem (SMP w/2 CPU cores)
Locale: LANG=en_GB.utf8, LC_CTYPE=en_GB.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Versions of packages putty depends on:
ii libatk1.0-0 1.30.0-1 The ATK accessibility toolkit
ii libc6 2.11.2-7 Embedded GNU C Library: Shared lib
ii libcairo2 1.8.10-6 The Cairo 2D vector graphics libra
ii libfontconfig1 2.8.0-2.1 generic font configuration library
ii libfreetype6 2.4.2-2.1 FreeType 2 font engine, shared lib
ii libglib2.0-0 2.24.2-1 The GLib library of C routines
ii libgtk2.0-0 2.20.1-2 The GTK+ graphical user interface
ii libpango1.0-0 1.28.3-1 Layout and rendering of internatio
ii libx11-6 2:1.3.3-4 X11 client-side library
ii putty-tools 0.60+2010-02-20-1.1 command-line tools for SSH, SCP, a
putty recommends no packages.
Versions of packages putty suggests:
ii putty-doc 0.60+2010-02-20-1.1 PuTTY HTML documentation
-- no debconf information
--- unix/uxser.c.orig 2010-12-08 13:57:45.378942304 +0100
+++ unix/uxser.c 2010-12-08 13:48:09.000000000 +0100
@@ -132,6 +132,9 @@
#ifdef B230400
CHECKBAUD(230400);
#endif
+#ifdef B500000
+ CHECKBAUD(500000);
+#endif
#undef CHECKBAUD
#undef SETBAUD
cfsetispeed(&options, bflag);