Bug#1003339: findutils: find manpage definition of "-delete" misses that it can delete directories

2022-01-08 Thread Chris Davies

On 08/01/2022 17:41, Andreas Metzler wrote:


Given that manpage and info are part of the upstream release I have

submitted a suggested patch to sync the wording.



Thank you. Appreciated



smime.p7s
Description: S/MIME Cryptographic Signature


Bug#1003339: findutils: find manpage definition of "-delete" misses that it can delete directories

2022-01-08 Thread Chris Davies
Package: findutils
Version: 4.8.0-1
Severity: minor
X-Debbugs-Cc: ch...@roaima.co.uk

Dear Maintainer,

The man page for "find" starts the reference definition "-delete" as,

Delete files; true if removal succeeded.

The upstream GNU documentation at
https://www.gnu.org/software/findutils/manual/html_node/find_html/Delete-Files.html
states,

Delete files or directories; true if removal succeeded.

The missing two words "or directories" are important and should be
included in the man page. Otherwise the implication is that `-delete`
can only delete files, and not directories.

GNU saying that it only supports its info system and that man pages are
incomplete is one thing. Having an out-of-date or misleading man page
is another.

Please consider amending the documentation (man page) for "-delete"
so that it is closer to, or the same as, the GNU original.

Thanks


-- System Information:
Debian Release: 11.2
  APT prefers stable
  APT policy: (900, 'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 5.10.0-10-amd64 (SMP w/2 CPU threads)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8), 
LANGUAGE=en_GB:en
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

Versions of packages findutils depends on:
ii  libc62.31-13+deb11u2
ii  libselinux1  3.1-3

findutils recommends no packages.

Versions of packages findutils suggests:
ii  mlocate  0.26-5

-- no debconf information



Bug#859021: dd: document that bs overrides ibs and obs

2017-03-29 Thread Chris Davies
Package: coreutils
Version: 8.25-2+b1
Severity: minor

Dear Maintainer,

The man page for dd does not define an interaction between bs and its more
specific ibs and obs options. POSIX does mandate that bs, if specified,
shall override ibs and obs. Empirically I have determined that coreutils
dd implements POSIX behaviour, so I should like to suggest the man page
is updated to state that bs overrides ibs and/or obs.


POSIX man page at http://www.unix.com/man-page/posix/1posix/dd/ defines
the three options bs, ibs, and obs as follows:

ibs=expr
Specify the input block size, in bytes, by expr (default is 512).

obs=expr
Specify the output block size, in bytes, by expr (default is 512).

bs=expr
Set  both input and output block sizes to expr bytes, superseding
ibs= and obs=. If no conversion other than sync, noerror, and
notrunc is specified, each input  block shall be copied to the
output as a single block without aggregating short blocks.


Extracts from the current coreutils man page read as follows:

bs=BYTES
read and write up to BYTES bytes at a time

ibs=BYTES
read up to BYTES bytes at a time (default: 512)

obs=BYTES
write BYTES bytes at a time (default: 512)


I would like to suggest that the explanation is amended as follows:

bs=BYTES
read and write up to BYTES bytes at a time (default:
512); overrides ibs and obs



-- System Information:
Debian Release: stretch/sid
  APT prefers stable
  APT policy: (900, 'stable'), (800, 'testing'), (300, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 4.8.0-2-amd64 (SMP w/1 CPU core)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages coreutils depends on:
ii  libacl1  2.2.52-3
ii  libattr1 1:2.4.47-2
ii  libc62.24-8
ii  libselinux1  2.6-3

coreutils recommends no packages.

coreutils suggests no packages.

-- no debconf information



Bug#824513: trickle does not understand extensions to SOCK_STREAM

2016-05-16 Thread Chris Davies
Package: trickle
Version: 1.07-10
Severity: normal

Dear Maintainer,

At the top of 'trickle's reimplementation of socket() in the file 
trickle-overload.c it has a check that includes 'type == SOCK_STREAM', so that 
only connections of type SOCK_STREAM are eligible for processing.

Some programs open the socket with 'type = SOCK_STREAM | SOCK_CLOEXEC'. The 
`SOCK_CLOEXEC` is a Linux extension (since 2.6.27) that avoids the use of a 
subsequent fcntl() call to set the close-on-exec flag.

Unfortunately 'SOCK_STREAM' is not the same as 'SOCK_STREAM | SOCK_CLOEXEC' so 
the 'trickle' processing will not take place.

You can see the effect with this sample ruby code, where the download is not 
restricted in any way.

cat >test.rb 

Bug#820868: rsync: Using --fake-super breaks creation of symlinks

2016-04-13 Thread Chris Davies
Package: rsync
Version: 3.1.1-3
Severity: important

Dear Maintainer,

Running rsync with --fake-server, copying from a remote system to the
local system. Symbolic links are now created as standard files containing
the symbolic link target filename. This renders them useless.


Scenario

1. Source files on remote host (ls -l /etc/openldap). There's nothing
special about this directory. The symlinks point outside the directory
tree being copied, but this makes no difference to the problem described
here.

-rw-r--r--1 adminadminist   263 Jan 31 02:14 ldap.conf
lrwxrwxrwx1 adminadminist44 Feb 28 16:04 schema -> 
/mnt/ext/opt/ldap_server/etc/openldap/schema
lrwxrwxrwx1 adminadminist31 Feb 28 03:07 slapd.conf -> 
/etc/config/openldap/slapd.conf
lrwxrwxrwx1 adminadminist34 Feb 28 03:07 slapdacl.conf -> 
/etc/config/openldap/slapdacl.conf


2. Operation and resulting files using rsync 3.1.1 WITHOUT --fake-super. This 
works as expected.

rsync -v -azS --delete --delete-excluded --numeric-ids 
remote_host:/etc/openldap/ .
receiving incremental file list
./
ldap.conf
schema -> /mnt/ext/opt/ldap_server/etc/openldap/schema
slapd.conf -> /etc/config/openldap/slapd.conf
slapdacl.conf -> /etc/config/openldap/slapdacl.conf

sent 42 bytes  received 462 bytes  91.64 bytes/sec
total size is 372  speedup is 0.74

ls -l
total 4
-rw-r--r-- 1 root root 263 Jan 30 13:14 ldap.conf
lrwxrwxrwx 1 root root  44 Feb 28 03:04 schema -> 
/mnt/ext/opt/ldap_server/etc/openldap/schema
lrwxrwxrwx 1 root root  34 Feb 27 14:07 slapdacl.conf -> 
/etc/config/openldap/slapdacl.conf
lrwxrwxrwx 1 root root  31 Feb 27 14:07 slapd.conf -> 
/etc/config/openldap/slapd.conf


3. Operation and resulting files using rsync 3.1.1 USING --fake-super. This 
fails to create symlinks.

rsync -v -azS --delete --delete-excluded --numeric-ids --fake-super 
remote_host:/etc/openldap/ .
receiving incremental file list
./
ldap.conf
schema -> /mnt/ext/opt/ldap_server/etc/openldap/schema
slapd.conf -> /etc/config/openldap/slapd.conf
slapdacl.conf -> /etc/config/openldap/slapdacl.conf

sent 42 bytes  received 462 bytes  91.64 bytes/sec
total size is 372  speedup is 0.74

ls -l
total 16
-rw-r--r-- 1 root root 263 Jan 30 13:14 ldap.conf
-rwxrwxrwx 1 root root  44 Feb 28 03:04 schema
-rwxrwxrwx 1 root root  34 Feb 27 14:07 slapdacl.conf
-rwxrwxrwx 1 root root  31 Feb 27 14:07 slapd.conf


4. Regression with rsync 3.0.9 (Debian wheezy) USING --fake-super. This works 
as expected.

rsync -v -azS --delete --delete-excluded --numeric-ids --fake-super 
remote_host:/etc/openldap/ .
receiving incremental file list
./
ldap.conf
schema -> /mnt/ext/opt/ldap_server/etc/openldap/schema
slapd.conf -> /etc/config/openldap/slapd.conf
slapdacl.conf -> /etc/config/openldap/slapdacl.conf

sent 42 bytes  received 462 bytes  77.54 bytes/sec
total size is 372  speedup is 0.74

ls -l
total 4
-rw-r--r-- 1 root root 263 Jan 30 13:14 ldap.conf
lrwxrwxrwx 1 root root  44 Feb 28 03:04 schema -> 
/mnt/ext/opt/ldap_server/etc/openldap/schema
lrwxrwxrwx 1 root root  34 Feb 27 14:07 slapdacl.conf -> 
/etc/config/openldap/slapdacl.conf
lrwxrwxrwx 1 root root  31 Feb 27 14:07 slapd.conf -> 
/etc/config/openldap/slapd.conf


Thanks.


-- System Information:
Debian Release: stretch/sid
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'testing'), (500, 'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 3.16.0-4-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages rsync depends on:
ii  base-files  9.6
ii  libacl1 2.2.52-3
ii  libattr11:2.4.47-2
ii  libc6   2.22-5
ii  libpopt01.16-10
ii  lsb-base9.20160110

rsync recommends no packages.

Versions of packages rsync suggests:
ii  openssh-client  1:7.2p2-2
ii  openssh-server  1:7.2p2-2

-- no debconf information



Bug#820327: hubicfuse: Cannot rmdir empty containers

2016-04-07 Thread Chris Davies
Package: hubicfuse
Version: 2.0.0-1.1
Severity: important

Dear Maintainer,

I've just upgraded from hubicfuse version 1.1.0-2 to 2.0.0-1.1. In
version 1 it is possible to create and remove containers (implemented
as directories at the topmost level of the filesystem). In version 2
any attempt to remove a container generates a software crash rendering
the filesystem unusable until it is remounted.

Scenario


# First, the working configuration
#
aptitude install hubicfuse=1.1.0-2
   ...
   Setting up hubicfuse (1.1.0-2) ...

mkdir -p /mnt/hubic

hubicfuse -o noauto_cache,sync_read,allow_other /mnt/hubic
mkdir /mnt/hubic/test1
ls -ld /mnt/hubic/test1
drwxr-xr-x 2 root root 0 Apr  7 13:53 /mnt/hubic/test1

rmdir /mnt/hubic/test1

fusermount -u /mnt/hubic



# Now the broken configuration
#
aptitude install hubicfuse
...
Setting up hubicfuse (2.0.0-1.1) ...

mkdir -p /mnt/hubic

hubicfuse -o noauto_cache,sync_read,allow_other /mnt/hubic
mkdir /mnt/hubic/test2
ls -ld /mnt/hubic/test2
drwxr-xr-x 2 root root 0 Apr  7 13:56 /mnt/hubic/test2

rmdir /mnt/hubic/test2
   rmdir: failed to remove '/mnt/hubic/test2': Software caused connection abort

ls -ld /mnt/hubic
ls: cannot access '/mnt/hubic': Transport endpoint is not connected

fusermount -u /mnt/hubic


-- System Information:
Debian Release: stretch/sid
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'testing'), (500, 'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 3.16.0-4-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages hubicfuse depends on:
ii  libc62.22-5
ii  libcurl3 7.47.0-1
ii  libfuse2 2.9.5-1
ii  libjson-c2   0.11-4
ii  libssl1.0.2  1.0.2g-1
ii  libxml2  2.9.3+dfsg1-1

hubicfuse recommends no packages.

hubicfuse suggests no packages.

-- no debconf information



Bug#820104: hubicfuse: Missing necessary "hubic_token" utility

2016-04-05 Thread Chris Davies
Package: hubicfuse
Version: 2.0.0-1.1
Severity: important

Dear Maintainer,

I've upgraded from hubifuse v1 to v2 (testing). The README.Debian file explains 
that the script "hubic_token" is required to help build the configuration file. 
This file is described as being included but it is not in the Debian package. 
Instead, one must retrieve the file directly from the source git site, 
https://github.com/TurboGit/hubicfuse/blob/master/hubic_token. Without the 
script, the configuration file cannot be created, which in turn means that the 
hubicfuse utility cannot be used.

Please could you include the hubic_token script in the package and update the 
README.Debian file to explain where it is located. I don't see that the script 
necessarily has to be installed in the user's PATH; it could presumably be 
placed in /usr/share/doc/contrib/ and referenced there.

Thanks.


-- System Information:
Debian Release: stretch/sid
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'testing'), (500, 'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 3.16.0-4-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages hubicfuse depends on:
ii  libc62.22-5
ii  libcurl3 7.47.0-1
ii  libfuse2 2.9.5-1
ii  libjson-c2   0.11-4
ii  libssl1.0.2  1.0.2g-1
ii  libxml2  2.9.3+dfsg1-1

hubicfuse recommends no packages.

hubicfuse suggests no packages.

-- no debconf information



Bug#747646: netcat-openbsd: UDP connections start with "XXXXX" junk

2014-05-10 Thread Chris Davies
Package: netcat-openbsd
Version: 1.105-7
Severity: normal

Hi,

Trying to diagnose an OpenVPN issue I started throwing UDP packets around
between to distinct hosts. I have discovered that the UDP traffic provided by
netcat-openbsd is mauled by the insertion of (at least) "X" characters at the
beginning of the "connection" before any other data is passed.

Here is the example scenario:

1. Host "client". Two terminals, each running one command:
tshark -i eth0 -nlp port 50493
nc -vvv -u server 50493

2. Host "server". Two terminals, each running one command:
tshark -i eth0 -nlp port 50493
nc -vvv -ul 50493

Nothing is typed in to the nc running either on "client" or "server". Data is
seen on the wire: 5 packets sent; 5 packets received. Retrying with the tshark
-V flag shows that all packets are (apparently) normal UDP packets each
containing a single one-byte character "X" (0x58).

The net result, however, is that the data stream output by the listening nc on
host "server" starts with "X", which corrupts the expected message.

To illustrate further, if you run this on host "client":
echo "hello" | nc -vvv -u server 50493

This is the received (but not expected) output:
Xhello

The unexpected behaviour does not happen with netcat-traditional.



-- System Information:
Debian Release: 7.4
  APT prefers stable
  APT policy: (990, 'stable'), (500, 'testing-updates'), (500, 'stable-
updates'), (500, 'testing'), (500, 'oldstable')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.2.0-4-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages netcat-openbsd depends on:
ii  libbsd0  0.4.2-1
ii  libc62.18-4

netcat-openbsd recommends no packages.

netcat-openbsd suggests no packages.


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#711850: java-wrappers: jvm-list.sh fails to find jvm from /etc/alternatives

2013-06-10 Thread Chris Davies
Package: java-wrappers
Version: 0.1.25
Severity: important
Tags: patch

I have just installed freemind. I have Oracle Java installed under
/usr/local/app/java-oracle/jdk1.7.0 and correctly mapped into
/etc/alternatives. I'm aware of issues surrounding Oracle Java but it's
required for another application I use. I also have OpenJDK versions 6 and 7
installed but unused.

Running freemind triggers a calls to java-wrappers, which in turn uses jvm-list
to detect an appropriate jvm. Unfortunately this fails because my jvm is not
installed under /usr/lib/jvm so java-wrappers is led to believe there is no
valid jvm installed, and consequently freemind will not start.

Investigating further it appears that there is a line within /usr/lib/java-
wrappers/jvm-list.sh that assumes a jvm linked from /etc/alternatives/java is
going to be somewhere under /usr/lib/jvm. The attached patch removes this
dependency assumption.



-- System Information:
Debian Release: 7.0
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable'), (500, 'oldstable')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.2.0-4-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages java-wrappers depends on:
ii  unzip  6.0-8

java-wrappers recommends no packages.

java-wrappers suggests no packages.

-- no debconf information
--- jvm-list.sh.2013-06-10	2011-09-14 17:27:08.0 +0100
+++ jvm-list.sh	2013-06-10 11:43:05.205951794 +0100
@@ -56,7 +56,7 @@
 __jvm_java2="$__jvm_java5 $__jvm_gcj2"
 
 # current java alternatives
-__jvm_alt=$(readlink /etc/alternatives/java|sed -n 's/\(\/usr\/lib\/jvm\/[^\/]*\)\/.*/\1/p')
+__jvm_alt=$(readlink /etc/alternatives/java|sed -n 's!\(.*\)/bin/[^/]*$!\1!p')
 
 # All JVMs
 __jvm_all="$__jvm_default /usr/lib/jvm/*"


Bug#697803: Update

2013-01-10 Thread Chris Davies

Incomplete bug report on my side. Sorry.

I would like kdm to include a reference to pam_mail so that MAIL and 
other related environment variables can be set properly system-wide, as 
per login, su, ssh, etc. I would also recommend the "nopen" flag be 
provided by default, instead of "standard", so that there is no 
notification of new mail as part of the GUI login process (leave that to 
the user's mail client).


Chris




smime.p7s
Description: S/MIME Cryptographic Signature


Bug#697804: gdm3 should reference pam_mail

2013-01-09 Thread Chris Davies
Package: gdm3
Version: 2.30.5-6squeeze4
Severity: normal


Gdm3 provides a login to the system, with session and authentication managed 
through PAM.
Non-GUI logins, ssh, and su use pam_mail to set the MAIL environment variable. 
Gdm3 should
do the same in /etc/pam.d/gdm3.

-- System Information:
Debian Release: 6.0.6
  APT prefers stable
  APT policy: (990, 'stable'), (500, 'stable-updates'), (500, 'testing'), (1, 
'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.32-5-686 (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 gdm3 depends on:
ii  adduser3.112+nmu2add and remove users and groups
ii  debconf [debconf-2 1.5.36.1  Debian configuration management sy
ii  gconf2 2.28.1-6  GNOME configuration database syste
ii  gnome-session [x-s 2.30.2-3  The GNOME Session Manager - GNOME 
ii  gnome-session-bin  2.30.2-3  The GNOME Session Manager - Minima
ii  gnome-terminal [x- 2.30.2-1  The GNOME terminal emulator applic
ii  libart-2.0-2   2.3.21-1  Library of functions for 2D graphi
ii  libatk1.0-01.30.0-1  The ATK accessibility toolkit
ii  libattr1   1:2.4.44-2Extended attribute shared library
ii  libaudit0  1.7.13-1+b2   Dynamic library for security audit
ii  libbonobo2-0   2.24.3-1  Bonobo CORBA interfaces library
ii  libbonoboui2-0 2.24.3-1  The Bonobo UI library
ii  libc6  2.11.3-4  Embedded GNU C Library: Shared lib
ii  libcairo2  1.8.10-6  The Cairo 2D vector graphics libra
ii  libcanberra-gtk0   0.24-1Gtk+ helper for playing widget eve
ii  libcanberra0   0.24-1a simple abstract interface for pl
ii  libdbus-1-31.2.24-4+squeeze1 simple interprocess messaging syst
ii  libdbus-glib-1-2   0.88-2.1  simple interprocess messaging syst
ii  libfontconfig1 2.8.0-2.1 generic font configuration library
ii  libfreetype6   2.4.2-2.1+squeeze4FreeType 2 font engine, shared lib
ii  libgconf2-42.28.1-6  GNOME configuration database syste
ii  libglib2.0-0   2.24.2-1  The GLib library of C routines
ii  libgnome2-02.30.0-1  The GNOME library - runtime files
ii  libgnomecanvas2-0  2.30.1-1  A powerful object-oriented display
ii  libgtk2.0-02.20.1-2  The GTK+ graphical user interface 
ii  liborbit2  1:2.14.18-0.1 libraries for ORBit2 - a CORBA ORB
ii  libpam-modules 1.1.1-6.1+squeeze1Pluggable Authentication Modules f
ii  libpam-runtime 1.1.1-6.1+squeeze1Runtime support for the PAM librar
ii  libpam0g   1.1.1-6.1+squeeze1Pluggable Authentication Modules l
ii  libpanel-applet2-0 2.30.2-2  library for GNOME Panel applets
ii  libpango1.0-0  1.28.3-1+squeeze2 Layout and rendering of internatio
ii  libpolkit-gobject- 0.96-4+squeeze2   PolicyKit Authorization API
ii  libpolkit-gtk-1-0  0.96-3PolicyKit GTK+ API
ii  libpopt0   1.16-1lib for parsing cmdline parameters
ii  librsvg2-common2.26.3-1  SAX-based renderer library for SVG
ii  libselinux12.0.96-1  SELinux runtime shared libraries
ii  libupower-glib10.9.5-5   abstraction for power management -
ii  libwrap0   7.6.q-19  Wietse Venema's TCP wrappers libra
ii  libx11-6   2:1.3.3-4 X11 client-side library
ii  libxau61:1.0.6-1 X11 authorisation library
ii  libxdmcp6  1:1.0.3-2 X11 Display Manager Control Protoc
ii  libxklavier16  5.0-2 X Keyboard Extension high-level AP
ii  libxml22.7.8.dfsg-2+squeeze6 GNOME XML library
ii  lsb-base   3.2-23.2squeeze1  Linux Standard Base 3.2 init scrip
ii  metacity [x-window 1:2.30.1-3lightweight GTK+ window manager
ii  policykit-1-gnome  0.96-3GNOME authentication agent for Pol
ii  rxvt [x-terminal-e 1:2.6.4-14VT102 terminal emulator for the X 
ii  twm [x-window-mana 1:1.0.4-2 Tab window manager
ii  upower 0.9.5-5   abstraction for power management
ii  xterm [x-terminal- 261-1 X terminal emulator
ii  zlib1g 1:1.2.3.4.dfsg-3  compression library - runtime

Versions of packages gdm3 recommends:
ii  at-spi 1.30.1-3  Assistive Technology Service Provi
ii  desktop-base   6.0.5squeeze1 common files for the Debian Deskto
ii  gnome-icon-theme   2.30.3-2  GNOME Desktop icon theme
ii  gnome-power-manager2.32.0-2  power management tool for the GNOM
ii  gnome-settings-daemon  2.30.2-2+squeeze1 daemon handling 

Bug#697803: kdm: KDM should reference pam_mail

2013-01-09 Thread Chris Davies
Package: kdm
Version: 4:4.4.5-7+squeeze1
Severity: normal


KDM provides a login to the system, with session and authentication managed 
through PAM.
Non-GUI logins, ssh, and su use pam_mail to set the MAIL environment variable. 
KDM should
do the same in /etc/pam.d/kdm and /etc/pam.d/kdm-np.

-- System Information:
Debian Release: 6.0.4
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable')
Architecture: i386 (i686)

Kernel: Linux 2.6.32-5-686 (SMP w/1 CPU core)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages kdm depends on:
ii  consolekit0.4.1-4framework for defining and trackin
ii  debconf [debconf-2.0] 1.5.36.1   Debian configuration management sy
ii  kdebase-runtime   4:4.4.5-1  runtime components from the offici
ii  kdebase-workspace-kgr 4:4.4.5-7+squeeze1 KDE greet libraries for authentica
ii  libc6 2.11.3-3   Embedded GNU C Library: Shared lib
ii  libck-connector0  0.4.1-4ConsoleKit libraries
ii  libdbus-1-3   1.2.24-4+squeeze1  simple interprocess messaging syst
ii  libkdecore5   4:4.4.5-2+squeeze3 the KDE Platform Core Library
ii  libkdeui5 4:4.4.5-2+squeeze3 the KDE Platform User Interface Li
ii  libkio5   4:4.4.5-2+squeeze3 the Network-enabled File Managemen
ii  libknewstuff2-4   4:4.4.5-2+squeeze3 the "Get Hot New Stuff" v2 Library
ii  libkworkspace44:4.4.5-7+squeeze1 library for the kdebase workspace
ii  libpam0g  1.1.1-6.1+squeeze1 Pluggable Authentication Modules l
ii  libqimageblitz4   1:0.0.4-4  QImageBlitz image effects library
ii  libqt4-svg4:4.6.3-4+squeeze1 Qt 4 SVG module
ii  libqt4-xml4:4.6.3-4+squeeze1 Qt 4 XML module
ii  libqtcore44:4.6.3-4+squeeze1 Qt 4 core module
ii  libqtgui4 4:4.6.3-4+squeeze1 Qt 4 GUI module
ii  libstdc++64.4.5-8The GNU Standard C++ Library v3
ii  libx11-6  2:1.3.3-4  X11 client-side library
ii  libxau6   1:1.0.6-1  X11 authorisation library
ii  libxdmcp6 1:1.0.3-2  X11 Display Manager Control Protoc
ii  libxtst6  2:1.1.0-3  X11 Testing -- Record extension li
ii  lsb-base  3.2-23.2squeeze1   Linux Standard Base 3.2 init scrip

Versions of packages kdm recommends:
ii  kde-window-manager [x 4:4.4.5-7+squeeze1 the K window manager (KWin)
ii  konsole [x-terminal-e 4:4.4.5-2  X terminal emulator
ii  logrotate 3.7.8-6Log rotation utility
ii  xserver-xorg-core [xs 2:1.7.7-14 Xorg X server - core server
ii  xterm [x-terminal-emu 261-1  X terminal emulator

Versions of packages kdm suggests:
ii  kdepasswd 4:4.4.5-2  graphical password changing utilit

-- Configuration Files:
/etc/pam.d/kdm changed:
auth   required pam_nologin.so
auth   required pam_env.so readenv=1
auth   required pam_env.so readenv=1 envfile=/etc/default/locale
@include common-auth
sessionrequired pam_limits.so
sessionoptional pam_mail.so quiet nopen
@include common-account
@include common-password
@include common-session


-- debconf information:
  kdm/stop_running_server_with_children: false
* shared/default-x-display-manager: kdm
  kdm/daemon_name: /usr/bin/kdm


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#536304: twinkle: Twinkle stops responding once a voice stream is established

2009-07-08 Thread Chris Davies
Package: twinkle
Version: 1:1.4.2-2
Severity: grave
Justification: renders package unusable

Previous versions of Twinkle worked fine. This version (1:1.4.2-2) becomes 
totally unresponsive to user input as soon as a voice channel is established. 
This includes keyboard and mouse operations.

I have confirmed this with a connection to sipgate.co.uk, using the 
connection-test and voicemail numbers (1 and 5, respectively). Presence 
of the voice channel suggests that the application has not locked up entirely.


-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (990, 'testing'), (900, 'stable'), (300, 'unstable'), (50, 
'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.28 (SMP w/2 CPU cores)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages twinkle depends on:
ii  libasound2 1.0.20-2  shared library for ALSA applicatio
ii  libboost-regex1.38.0   1.38.0-6  regular expression library for C++
ii  libc6  2.9-12GNU C Library: Shared libraries
ii  libccgnu2-1.7-01.7.3-1   A GNU package for creating portabl
ii  libccrtp1-1.7-01.7.1-2   Common C++ class framework for RTP
ii  libgcc11:4.4.0-5 GCC support library
ii  libgsm11.0.12-1  Shared libraries for GSM speech co
ii  libmagic1  5.03-1File type determination library us
ii  libncurses55.7+20090523-1shared libraries for terminal hand
ii  libqt3-mt  3:3.3.8b-5+b1 Qt GUI Library (Threaded runtime v
ii  libreadline5   5.2-4 GNU readline and history libraries
ii  libsndfile11.0.18-2  Library for reading/writing audio 
ii  libspeex1  1.2~rc1-1 The Speex codec runtime library
ii  libspeexdsp1   1.2~rc1-1 The Speex extended runtime library
ii  libstdc++6 4.4.0-5   The GNU Standard C++ Library v3
ii  libx11-6   2:1.2.1-1 X11 client-side library
ii  libxext6   2:1.0.4-1 X11 miscellaneous extension librar
ii  libxml22.7.3.dfsg-1  GNOME XML library
ii  libzrtpcpp-1.4-0   1.4.3-3   ccrtp extension for zrtp/Zfone sup
ii  zlib1g 1:1.2.3.3.dfsg-13 compression library - runtime

twinkle recommends no packages.

twinkle suggests no packages.

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#421659: cpio: mt does not report tape status and hangs if the drive is empty

2008-08-27 Thread Chris Davies
Just discovered this report. I've also had terrible problems with a more 
recent version of mt. Your suggestion of using mt-st instead works for me. 
Fantastic, thank you.


kernel: 2.6.18-4-xen-686
cpio: cpio/testing uptodate 2.9-13
mt-st: mt-st/testing uptodate 1.1-2

Cheers,
Chris



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#455593: Resume broken with LVM (fix for package lvm2)

2008-08-20 Thread Chris Davies
I can confirm that I also get the resume prompt for an LVM based swap device, 
running stock kernel 2.6.25-2-686.


I've spent the evening tracing through the initramfs scripts, and have 
determined that scripts/local-premount/uswsusp calls its resume script without 
having first activated the VG containing the swap partition. Consequently the 
partiton doesn't exist so it can't be checked.


A fix that works for me appears to be to apply the attached patch to 
/usr/share/initramfs-tools/scripts/local-top/lvm2 and then rerun mkinitramfs.


If I could work out how to submit this to the lvm2 maintainer I'd do that, 
too. You may want to reroute this there, as the patched file appears to belong 
to that package.


Regards,
Chris
--- /usr/share/initramfs-tools/scripts/local-top/lvm2.2008-08-21	2008-07-18 22:16:02.0 +0100
+++ /usr/share/initramfs-tools/scripts/local-top/lvm2	2008-08-21 00:23:06.0 +0100
@@ -67,4 +67,7 @@
 activate_vg "$ROOT"
 activate_vg "$resume"
 
+test -f /etc/uswsusp.conf &&
+	activate_vg `sed -n -e 's/resume.*= *//p' /etc/uswsusp.conf`
+
 exit 0


Bug#472941: sympa: installation dependency on en_US locale

2008-03-27 Thread Chris Davies
Package: sympa
Version: 5.3.4-2
Severity: normal
Tags: l10n


Sympa has an installation dependency on the en_US locale. Specifically, I
have variations of en_GB on my system, and I get this installation error:

Setting up sympa (5.3.4-2) ...
/etc/sympa/sympa.conf file has been created
/etc/sympa/wwsympa.conf file has been created
Reloading system log daemon
Error at line 169 : /etc/sympa/sympa.confLanguage::SetLang() Failed to 
setlocale(en_US) ; you either have a problem with the catalogue .mo files or 
you should extend available locales in  your /etc/locale.gen (or 
/etc/sysconfig/i18n) file
Language::SetLang() Failed to setlocale(en_US) ; you either have a problem with 
the catalogue .mo files or you should extend available locales in  your 
/etc/locale.gen (or /etc/sysconfig/i18n) file
Language::SetLang() Language::SetLang(), missing locale parameter
mail::smtpto() Missing Return-Path in mail::smtpto()
Configuration file /etc/sympa/sympa.conf has errors.
Sympa failed to prepare database.
dpkg: error processing sympa (--configure):
 subprocess post-installation script returned error exit status 1

The work-around is to generate at least one of the en_US locale files
("dpkg-reconfigure locales") and reinstall.

Chris

-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (990, 'testing'), (900, 'stable'), (300, 'unstable'), (50, 
'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.18-4-xen-686 (SMP w/1 CPU core)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages sympa depends on:
ii  adduser   3.106  add and remove users and groups
ii  debconf [debconf-2.0] 1.5.20 Debian configuration management sy
ii  exim4-daemon-light [mail-tran 4.69-2 lightweight Exim MTA (v4) daemon
ii  libarchive-zip-perl   1.18-1 Module for manipulation of ZIP arc
ii  libc6 2.7-6  GNU C Library: Shared libraries
ii  libcgi-fast-perl  5.8.8-12   CGI::Fast Perl module
ii  libcrypt-ciphersaber-perl 0.61-4 Perl module implementing CipherSab
ii  libdbd-mysql-perl 4.006-1A Perl5 database interface to the 
ii  libdbi-perl   1.602-1Perl5 database interface by Tim Bu
ii  libintl-perl  1.16-4 Uniforum message translations syst
ii  libio-stringy-perl2.110-3Perl5 modules for IO from scalars 
ii  libmailtools-perl 2.02-1 Manipulate email in perl programs
ii  libmd5-perl   2.03-1 backwards-compatible wrapper for D
ii  libmime-charset-perl  1.001-1Charset Informations for MIME
ii  libmime-encwords-perl 0.040-3deal with RFC-1522 encoded words
ii  libmime-perl  5.425-2transitional dummy package
ii  libmime-tools-perl [libmime-p 5.425-2Perl5 modules for MIME-compliant m
ii  libmsgcat-perl1.03-4 Locale::Msgcat perl module
ii  libnet-ldap-perl  1:0.34-1   A Client interface to LDAP servers
ii  libtemplate-perl  2.19-1 template processing system written
ii  libxml-libxml-perl1.66-1 Perl module for using the GNOME li
ii  lsb-base  3.1-24 Linux Standard Base 3.1 init scrip
ii  mhonarc   2.6.16-1   Mail to HTML converter
ii  perl [libmime-base64-perl]5.8.8-12   Larry Wall's Practical Extraction 
ii  perl-suid 5.8.8-12   Runs setuid Perl scripts
ii  sysklogd [system-log-daemon]  1.5-2  System Logging Daemon

Versions of packages sympa recommends:
ii  doc-base  0.8.10 utilities to manage online documen
ii  logrotate 3.7.1-3Log rotation utility

-- debconf information:
  sympa/key_password_again: (password omitted)
* sympa/db_adminpasswd: (password omitted)
* sympa/db_passwd: (password omitted)
* sympa/db_passwd_again: (password omitted)
  sympa/key_password: (password omitted)
  sympa/use_db: true
  sympa/db_removeonpurge: false
  sympa/use_soap: false
  wwsympa/webserver_type: Apache 2
  sympa/listmaster: [EMAIL PROTECTED]
  wwsympa/wwsympa_url:
  wwsympa/webserver_restart: true
  wwsympa/remove_spool: false
  sympa/hostname: listnews.manheim.co.uk
  sympa/db_options:
  sympa/db_user: sympa
  sympa/wwsympa_configured: false
  sympa/db_name: sympa
  wwsympa/fastcgi: false
* sympa/db_type: MySQL
  sympa/db_configured: false
  sympa/use_wwsympa: false
* sympa/db_hostname: localhost
  sympa/db_authtype: Ident-based
  sympa/language: en_US
  sympa/db_port:
  sympa/remove_spool: false
  sympa/smime_support: false



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#446343: cutter: does not work at all

2008-03-08 Thread Chris Davies

Aurélien GÉRÔME wrote:

Thanks for you detailed analysis. I will try to reproduce your exact
setup this week-end.


Have you had time to look at this, yet? I would be interested in you 
describing a setup that I can try to reproduce here, as I cannot get cutter to 
work for me at all.


With regard to my throwaway comment of Feb 14 that, "I would imagine a patch 
will be pretty straightforward", are you planning to do this or should I have 
a stab at it?


Regards,
Chris





Bug#446343: cutter: does not work at all

2008-02-14 Thread Chris Davies

Aurélien GÉRÔME wrote:

Thanks to this bug, cutter got blindly removed from testing, and I
still _cannot_ reproduce it. It would ne nice to get some recipe to
reproduce it, if we ever want it to be released with Lenny.


I've added some debug to the program, and it seems to me that it simply cannot 
work. Either that or I'm grossly misunderstanding what it does.


The attached patch applies my debug code to the debian cutter version 1.03-2. 
 Apologies for the code quality; I haven't written any C for a good number of 
years, now, and it was thrown together in a hurry.


To reproduce the situation where it doesn't work for me, you need three 
systems: A (10.1.20.42 /16) and C (192.168.130.252 /21) are connected via B 
(10.1.1.106 /16 and 192.168.133.13 /21). There's no NAT involved. On A, ssh to 
C. Log in to B and you'll see an entry in /proc/net/ip_conntrack matching the 
connection.


I picked it out with this ugly line:

sudo grep 'tcp.*ESTABLISHED' /proc/net/ip_conntrack | grep '10.1.20.42' | grep 
'192.168.*252' | grep 'port=22 '


Now run the patched version of cutter and you'll see something like this:

Args: /tmp/cutter 192.168.130.252 22 10.1.20.42
...
Got tcp/ESTABLISHED
> src=10.1.20.42
> dst=192.168.130.252
> sport=36707
> dport=22
> src=192.168.130.252
> dst=10.1.20.42
> sport=22
> dport=36707
Matched IP and port
 localip(src1n=10.1.20.42)=0, localip(dst1n=192.168.130.252)=0,
 localip(src2n=192.168.130.252)=0, localip(dst2n=10.1.20.42)=0
Got tcp/ESTABLISHED
...

Looking at the code around 540, there are a number of condition criteria that 
check for local/remote IP address (I guess that "local" means a local 
interface for the box on which cutter is running).


If you have a connection from A to C, via B, then neither of the address pairs 
are going to be local, so neither of the two if() statements can succeed.


I haven't had time to dig further (maybe tomorrow), but I would imagine a 
patch will be pretty straightforward.


Regards,
Chris
--- cutter.c.2008-02-14	2008-02-14 11:24:45.0 +
+++ cutter.c	2008-02-14 11:52:41.0 +
@@ -494,7 +494,18 @@
 			continue;
 
 		p = buff;
-
+puts("Got tcp/ESTABLISHED");
+{
+char item[32]; char *i = buff;
+if (get_str_field(&i, " src=", item, sizeof(item))) printf("> src=%s\n", item); else puts(" no src");
+if (get_str_field(&i, " dst=", item, sizeof(item))) printf("> dst=%s\n", item); else puts(" no dst");
+if (get_str_field(&i, " sport=", item, sizeof(item))) printf("> sport=%s\n", item); else puts(" no sport");
+if (get_str_field(&i, " dport=", item, sizeof(item))) printf("> dport=%s\n", item); else puts(" no dport");
+if (get_str_field(&i, " src=", item, sizeof(item))) printf("> src=%s\n", item); else puts(" no src");
+if (get_str_field(&i, " dst=", item, sizeof(item))) printf("> dst=%s\n", item); else puts(" no dst");
+if (get_str_field(&i, " sport=", item, sizeof(item))) printf("> sport=%s\n", item); else puts(" no sport");
+if (get_str_field(&i, " dport=", item, sizeof(item))) printf("> dport=%s\n", item); else puts(" no dport");
+}
 		if (
 			!get_str_field(&p, " src=", src1, sizeof(src1)) ||
 			!get_str_field(&p, " dst=", dst1, sizeof(dst1)) ||
@@ -504,7 +515,7 @@
 			!get_str_field(&p, " dst=", dst2, sizeof(dst2)) ||
 			!get_int_field(&p, " sport=", &sport2) ||
 			!get_int_field(&p, " dport=", &dport2)
-		) continue;
+		) { puts("Not got all required fields; continuing"); continue; }
 
 		src1n = inet_addr(src1);
 		src2n = inet_addr(src2);
@@ -517,11 +528,13 @@
 			(match(ip1,port1,src1n,sport1) && match(ip2,port2,dst1n,dport1)) ||
 			(match(ip1,port1,dst1n,dport1) && match(ip2,port2,src1n,sport1))
 		) {
+puts("Matched IP and port");
+printf (" localip(src1n=%s)=%d, localip(dst1n=%s)=%d, localip(src2n=%s)=%d, localip(dst2n=%s)=%d\n", src1, localip(src1n), dst1, localip(dst1n), src2, localip(src2n), dst2, localip(dst2n));
 			/*
 			 * local network to public network - forwarded connection
 			 */
-
 			if (!localip(src1n) && !localip(dst1n) && !localip(src2n) && localip(dst2n)) {
+puts("Local network to public network - forwarded connection");
 found ++;
 printf("For connection %s:%d -> %s:%d\n", src1, sport1, dst1, dport1);
 ok = send_rst(dst1,dport1,src1,sport1) && ok;
@@ -531,6 +544,7 @@
 			/* Inbound connection forwarded to private network device */
 
 			else if (!localip(src1n) && localip(dst1n) && !localip(src2n) && !localip(dst2n)) {
+puts("Inbound connection forwarded to private network device");
 found ++;
 printf("For connection %s:%d -> %s:%d\n", dst2, dport2, src2, sport2);
 ok = send_rst(dst1,dport1,src1,sport1) && ok;
@@ -564,6 +578,7 @@
 		exit(EXIT_FAILURE);
 	}
 
+{ int i; printf("Args:"); for (i=0; i

Bug#446343: cutter: does not work at all

2007-12-06 Thread Chris Davies

On Fri, Oct 12, 2007 at 11:13:44AM +0100, Chris Davies wrote:

Cutter does not work as described; it always reports "No matching
connections found". Here is a repeatable example [...]


Aurélien GÉRÔME wrote:

I am not able to reproduce it. Does cutter still behave like this if
you try it now?


I have just reconfirmed that it still does not work for me. (This is running 
it as root.). I have cutter package 1.03-2 installed from "testing", and 
kernels 2.6.18 (custom build) and 2.6.22-3-686 (debian).


I've checked cutter on a transit firewall and also on an end-point. It does 
not work for me in either situation ("No matching connections found").


Regards,
Chris





Bug#446343: cutter: does not work at all

2007-10-12 Thread Chris Davies
Package: cutter
Version: 1.03-2
Severity: grave
Justification: renders package unusable

Cutter does not work as described; it always reports "No matching
connections found". Here is a repeatable example:

netstat -an | grep 'ESTABLISHED'
tcp0  0 192.168.130.5:38101 10.1.30.129:22 ESTABLISHED
tcp0  0 192.168.130.5:38819 10.1.30.129:993ESTABLISHED


cutter 192.168.130.5 38101 10.1.30.129 22
No matching connections found
cutter 192.168.130.5 38101 10.1.30.129
No matching connections found
cutter 192.168.130.5 38101
No matching connections found

cutter 10.1.30.129 22 192.168.130.5 38101
No matching connections found
cutter 10.1.30.129 22 192.168.130.5
No matching connections found
cutter 10.1.30.129 22
No matching connections found

Regards,
Chris

-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (990, 'testing'), (900, 'stable'), (300, 'unstable'), (50, 
'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.21-2-686 (SMP w/2 CPU cores)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/bash

Versions of packages cutter depends on:
ii  libc6 2.6.1-1+b1 GNU C Library: Shared libraries

cutter recommends no packages.

-- no debconf information



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#420138: twinkle: Crashes when making/receiving a call

2007-04-24 Thread Chris Davies

Mark Purcell wrote:

Thanks for the report.  I suspect it is related to your version of 
libzrtpcpp-0.9.0


Versions of packages twinkle depends on:
ii  libzrtpcpp-0.9-0   0.9.0-2   ccrtp extension for zrtp/Zfone sup


You have 0.9.0-2 which shouldn't be allowed and this dependancy needs to be fixed in 
twinkle. Could I ask you to install 0.9.0-4 from unstable and let me know if that 
fixes your issue:


It has indeed fixed the issue. Thank you very much.

Regards,
Chris
--
[EMAIL PROTECTED]


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#420138: twinkle: Crashes when making/receiving a call

2007-04-20 Thread Chris Davies
Package: twinkle
Version: 1:1.0-3
Severity: grave
Justification: renders package unusable

Twinkle starts and runs happily until a call is made or received. As soon
as the session is established Twinkle crashes. This error is printed on
the console:

KCrash: Application 'twinkle' crashing...
twinkle: userintf.cpp:2016: virtual void t_userintf::lock(): Assertion 
`!is_prohibited_thread()' failed.
Unable to start Dr. Konqi

There is no backtrace available to KCrash. Twinkle 1:1.0-2 worked for me;
I'd try to downgrade if I could find a deb for it.

Thanks,
Chris

-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (900, 'testing'), (900, 'stable'), (300, 'unstable'), (50, 
'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.17.6-ia010152 (PREEMPT)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/bash

Versions of packages twinkle depends on:
ii  kdelibs4c2a4:3.5.5a.dfsg.1-8 core libraries and binaries for al
ii  libasound2 1.0.13-2  ALSA library
ii  libboost-regex1.33.1   1.33.1-10 regular expression library for C++
ii  libc6  2.3.6.ds1-13  GNU C Library: Shared libraries
ii  libccrtp1-1.5-11.5.1-1   Common C++ class framework for RTP
ii  libcommoncpp2-1.5.3-0  1.5.6-2   A GNU package for creating portabl
ii  libgcc11:4.1.1-21GCC support library
ii  libgcrypt111.2.4-2   LGPL Crypto library - runtime libr
ii  libgnutls131.4.4-3   the GNU TLS library - runtime libr
ii  libgsm11.0.10-13 Shared libraries for GSM speech co
ii  libqt3-mt  3:3.3.7-4 Qt GUI Library (Threaded runtime v
ii  libsndfile11.0.17-1  Library for reading/writing audio 
ii  libspeex1  1.1.12-3  The Speex Speech Codec
ii  libstdc++6 4.1.1-21  The GNU Standard C++ Library v3
ii  libx11-6   2:1.0.3-7 X11 client-side library
ii  libxext6   1:1.0.1-2 X11 miscellaneous extension librar
ii  libzrtpcpp-0.9-0   0.9.0-2   ccrtp extension for zrtp/Zfone sup
ii  zlib1g 1:1.2.3-13compression library - runtime

twinkle recommends no packages.

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#305490: firefox bug followup

2006-09-14 Thread Chris Davies

I removed all extensions, problem still exists.  strace attached.

ii  firefox   1.5.dfsg+1.5.0.6-5 
lightweight web browser based on Mozilla
ii  firefox-gnome-support 1.5.dfsg+1.5.0.6-5 
Support for Gnome in Mozilla Firefox



Eric Dorland wrote:

* Mike Hommey ([EMAIL PROTECTED]) wrote:

On Thu, Apr 20, 2006 at 01:54:08PM -0400, Chris Davies <[EMAIL PROTECTED]> 
wrote:
even with the latest updates, this happened again once today.  No 
iframe's on the page, however, there were a number of nested tables.


So, this bug still exists.  Should a new bug be opened?

This might be related to
https://bugzilla.mozilla.org/show_bug.cgi?id=343953 , which will be
fixed in next upload.


Did that upload resolve the issue for you Chris? 

poll([{fd=3, events=POLLIN, revents=POLLIN}], 1, -1) = 1
read(3, "\1U\261\302\0\0\0\0006\26h\1\1\0\0\0\0\0\0\0\0\0\0\0\4"..., 32) 
= 32
write(3, ";\3\5\0007\26h\1\0\0\0\0K\1\225\0,\1A\0018\27\5\0007\26"..., 
100) = 100
read(3, 0xbff745d0, 32) = -1 EAGAIN (Resource 
temporarily unavailable)

poll([{fd=3, events=POLLIN, revents=POLLIN}], 1, -1) = 1
read(3, "\1\4\267\302\0\0\0\0007\26h\1\1\0\0\0\0\0\0\0\0\0\0\0\4"..., 
32) = 32
write(3, ";\3\5\0006\26h\1\0\0\0\0K\1\225\0,\1A\0018\27\5\0006\26"..., 
100) = 100
read(3, 0xbff745d0, 32) = -1 EAGAIN (Resource 
temporarily unavailable)

poll([{fd=3, events=POLLIN, revents=POLLIN}], 1, -1) = 1
read(3, "\1\222\275\302\0\0\0\0006\26h\1\1\0\0\0\0\0\0\0\0\0\0\0"..., 
32) = 32
write(3, ";\3\5\0007\26h\1\0\0\0\0K\1\225\0,\1A\0018\27\5\0007\26"..., 
356) = 356
read(3, 0xbff74c00, 32) = -1 EAGAIN (Resource 
temporarily unavailable)

poll([{fd=3, events=POLLIN, revents=POLLIN}], 1, -1) = 1
read(3, "\1U\315\302\0\0\0\0007\26h\1\1\0\0\0\0\0\0\0\0\0\0\0\4"..., 32) 
= 32
write(3, "9\3\4\0\35\26h\0016\26h\1\377\377\177\0008\1\6\0006\26"..., 
176) = 176read(3, 0xbff74de0, 32) = -1 EAGAIN (Resource 
temporarily unavailable)

poll([{fd=3, events=POLLIN, revents=POLLIN}], 1, -1) = 1
read(3, "\1\264\326\302\0\0\0\0006\26h\1\1\0\0\0\0\0\0\0\0\0\0\0"..., 
32) = 32
write(3, ";\3\5\0007\26h\1\0\0\0\0K\1\225\0,\1\247\0018\26\5\000"..., 
100) = 100read(3, 0xbff745d0, 32) = -1 EAGAIN (Resource 
temporarily unavailable)

poll([{fd=3, events=POLLIN, revents=POLLIN}], 1, -1) = 1
read(3, "\1\371\334\302\0\0\0\0007\26h\1\1\0\0\0\0\0\0\0\0\0\0\0"..., 
32) = 32
write(3, ";\3\5\0006\26h\1\0\0\0\0K\1\225\0,\1\247\0018\26\5\000"..., 
100) = 100read(3, 0xbff745d0, 32) = -1 EAGAIN (Resource 
temporarily unavailable)

poll([{fd=3, events=POLLIN, revents=POLLIN}], 1, -1) = 1
read(3, "\1\r\342\302\0\0\0\0006\26h\1\1\0\0\0\0\0\0\0\0\0\0\0\4"..., 
32) = 32
write(3, ";\3\5\0007\26h\1\0\0\0\0K\1\225\0,\1\247\0018\26\5\000"..., 
100) = 100read(3, 
"\1\215\350\302\0\0\0\0007\26h\1\1\0\0\0\0\0\0\0\0\0\0\0"..., 32) = 32
write(3, ";\3\5\0006\26h\1\0\0\0\0K\1\225\0,\1\247\0018\26\5\000"..., 
100) = 100read(3, "\1 
\356\302\0\0\0\0006\26h\1\1\0\0\0\0\0\0\0\0\0\0\0\4"..., 32) = 32
write(3, ";\3\5\0007\26h\1\0\0\0\0K\1\225\0,\1\247\0018\26\5\000"..., 
396) = 396read(3, 
"\1\305\1\303\0\0\0\0007\26h\1\1\0\0\0\0\0\0\0\0\0\0\0\4"..., 32) = 32
write(3, "\232\4\5\0007\26h\0016\26h\0016\0\0\0\0\0\0\0\206\1\1\0"..., 
24) = 24
read(3, 0xbff73aa0, 32) = -1 EAGAIN (Resource 
temporarily unavailable)

poll([{fd=3, events=POLLIN, revents=POLLIN}], 1, -1) = 1
read(3, "\1\0\3\303\0\0\0\0003\26h\1\1\0\0\0\0\0\0\0\0\0\0\0\4\0"..., 
32) = 32
write(3, "\232\32\7\0\1\26h\0017\26h\1\2141\3020\2141\377\377\0\0"..., 
52) = 52
read(3, 0xbff73f80, 32) = -1 EAGAIN (Resource 
temporarily unavailable)

poll([{fd=3, events=POLLIN, revents=POLLIN}], 1, -1) = 1
read(3, "\1\0\6\303\0\0\0\0/\26h\1\3\0\0\0\0\0\0\0\0\0\0\0\4\0\0"..., 
32) = 32
write(3, "\232\34\v\0003\26h\1\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 
104) = 104read(3, 0xbff73fc0, 32) = -1 EAGAIN (Resource 
temporarily unavailable)

poll([{fd=3, events=POLLIN, revents=POLLIN}], 1, -1) = 1
read(3, "\1\0\v\303\0\0\0\\26h\1\2\0\0\0\0\0\0\0\0\0\0\0\4\0"..., 
32) = 32
write(3, "\232\6\5\0/\26h\1\0\0\0\0c\1&\2\252\0\24\0\232\27O\0\3"..., 
388) = 388read(3, 0xbff73d80, 32) = -1 EAGAIN (Resource 
temporarily unavailable)

poll([{fd=3, events=POLLIN, revents=POLLIN}], 1, -1) = 1
read(3, "\1U\23\303\0\0\0\0006\26h\1\2\0\0\0\0\0\0\0\0\0\0\0\4\0"..., 
32) = 32
write(3, "\232\4\5\0006\26h\0010\26h\0016\0\0\0\0\0\0\0\206\1\1\0"..., 
24) = 24
read(3, 0xbff73aa0, 32) = -1 EAGAIN (Resource 
temporarily unavailable)

poll([{fd=3, events=POLLIN, revents=POLLIN}], 1, -1) = 1
read(

Bug#305490: firefox bug followup

2006-04-20 Thread Chris Davies
even with the latest updates, this happened again once today.  No 
iframe's on the page, however, there were a number of nested tables.


So, this bug still exists.  Should a new bug be opened?


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#305490: firefox: that annoying bug

2006-04-13 Thread Chris Davies
well, I've given it a pretty good and thorough runthrough and I haven't 
had the problem.


I reloaded multiple pages in multiple tabs that used to exhibit this 
problem (cnn.com, cnnfn.com, etc) -- mostly sites using iframes for 
their banner ads, and it appears to be working properly now.


Thanks for the perserverence on this one.

Justin Pryzby wrote:

On Tue, Apr 11, 2006 at 02:50:55AM -0400, Ove Kaaven wrote:

Package: firefox
Version: 1.5.dfsg+1.5.0.1-4
Followup-For: Bug #305490

Since I complained about this earlier, I should probably mention that I'm not
seeing this issue anymore after an upgrade (libxul0d was among the upgraded
packages, I think, don't remember any others)... don't know about the original
submitter

Thomas and Chris, could you both update to recent library versions,
and report whether this bug still affects you?

Thanks
Justin

!DSPAM:443bc14d307781488213422!




--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#305490: Mozilla Firefox and multiple windows

2005-06-29 Thread Chris Davies
I too have had the same problem on sites like imdb.com, cnnfn.com, etc. 
 One similarity I have found is that iframe's seem to be the trigger.


However, another interesting data point is that with pipelining turned 
off, I haven't had it happen since.  I had pipelining at 16 before, 
turned it back to 4, but was having problems with cisco's site (their 
pix breaks pipelining).  After turning pipelining off, I haven't had it 
happen since.  The higher the pipelining number, the more frequently it 
would happen.


I did turn pipelining on and it did recur after about 4 hours of 
surfing, however, with pipelining off, my browser has been open almost 
24 hours with no problem.



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]