Package: xvkbd
Version: 3.0-1
Severity: normal
I bet it's quite rarely used option :)
anyway, in debian/patches/02_xvkbd_c_various.dpatch on line 135 it states:
if (sscanf(cp + 1, "%d", &val) != -1) {
/* fails with "no number" here */
but sscanf returns (as documented) number of read arguments.
Therefore, icomparing it to -1 is purposeless. This way:
if (sscanf(cp + 1, "%d", &val) <= 0) {
it works for me, although, AFAIU, '<=' instead of '=' probably has no
purpose as well (i'm not sure, therefore I don't try to make it as a patch…)
P.S. Excuse my quite imperfect english.
-- System Information:
Debian Release: lenny/sid
APT prefers unstable
APT policy: (500, 'unstable'), (500, 'testing'), (500, 'stable'), (1,
'experimental')
Architecture: amd64 (x86_64)
Kernel: Linux 2.6.25.4-amd64 (SMP w/1 CPU core; PREEMPT)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Versions of packages xvkbd depends on:
ii libc6 2.7-15 GNU C Library: Shared libraries
ii libice6 2:1.0.4-1 X11 Inter-Client Exchange library
ii libsm6 2:1.1.0-1 X11 Session Management library
ii libx11-6 2:1.1.5-2 X11 client-side library
ii libxext6 2:1.0.4-1 X11 miscellaneous extension librar
ii libxmu6 2:1.0.4-1 X11 miscellaneous utility library
ii libxpm4 1:3.5.7-1 X11 pixmap library
ii libxt6 1:1.0.5-3 X11 toolkit intrinsics library
ii libxtst6 2:1.0.3-1 X11 Testing -- Resource extension
ii xaw3dg 1.5+E-17 Xaw3d widget set
Versions of packages xvkbd recommends:
ii wamerican [wordlist] 6-2.3 American English dictionary words
xvkbd suggests no packages.
-- no debconf information
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]