Your message dated Thu, 18 Mar 2010 21:32:22 +0000
with message-id <[email protected]>
and subject line Bug#501904: fixed in 6tunnel 0.11rc2-3
has caused the Debian Bug report #501904,
regarding 6tunnel does not parse -f option
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
501904: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=501904
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: 6tunnel
Version: 0.11rc2-2
from 6tunnel(1):
-f Force tunneling even if remote host is not resolvable at the execution
time.
But 6tunnel fails with no error message:
$ 6tunnel -f -l 127.0.0.1 1119 somehost.somedomain 119
$ echo $?
1
The getopt() call in 6tunnel.c:main() searches for an -f option
("1dv46fs:l:I:i:hu:m:L:A:p:"), but the following switch/case tests for
the 'r' char instead the 'f'.
Since the option "-r" is not found in the manpage or the rest of the code,
the attached patch changes the switch/case from 'r' to 'f'.
With that patch applied, 6tunnel will start with the -f option:
$ 6tunnel -f -l 127.0.0.1 1119 somehost.somedomain 119
$ echo $?
0
Regards
Olaf Rempel
--- 6tunnel-0.11rc2/6tunnel.c.org 2005-08-18 19:02:50.000000000 +0200
+++ 6tunnel-0.11rc2/6tunnel.c 2008-10-11 14:34:34.000000000 +0200
@@ -538,7 +538,7 @@
case 'l':
bind_host = xstrdup(optarg);
break;
- case 'r':
+ case 'f':
force = 1;
break;
case 'i':
--- End Message ---
--- Begin Message ---
Source: 6tunnel
Source-Version: 0.11rc2-3
We believe that the bug you reported is fixed in the latest version of
6tunnel, which is due to be installed in the Debian FTP archive:
6tunnel_0.11rc2-3.debian.tar.gz
to main/6/6tunnel/6tunnel_0.11rc2-3.debian.tar.gz
6tunnel_0.11rc2-3.dsc
to main/6/6tunnel/6tunnel_0.11rc2-3.dsc
6tunnel_0.11rc2-3_i386.deb
to main/6/6tunnel/6tunnel_0.11rc2-3_i386.deb
A summary of the changes between this version and the previous one is
attached.
Thank you for reporting the bug, which will now be closed. If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Jari Aalto <[email protected]> (supplier of updated 6tunnel package)
(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Format: 1.8
Date: Wed, 17 Mar 2010 10:25:28 +0200
Source: 6tunnel
Binary: 6tunnel
Architecture: source i386
Version: 0.11rc2-3
Distribution: unstable
Urgency: low
Maintainer: Jari Aalto <[email protected]>
Changed-By: Jari Aalto <[email protected]>
Description:
6tunnel - TCP proxy for non-IPv6 applications
Closes: 436257 501904 569181
Changes:
6tunnel (0.11rc2-3) unstable; urgency=low
.
* New maintainer (Closes: #569181).
- Move to packaging format "3.0 (quilt)".
* debian/clean
- New file.
* debian/compat
- Update to 7.
* debian/control
- (Build-Depends): update to debhelper 7.1.
- (Depends): add ${misc:Depends}.
- (Homepage): update to Freshmeat.
- (Standards-Version): update to 3.8.4.
- (Vcs-*): new fields.
* debian/copyright
- Update layout.
* debian/patches/series
- (Number 10): Correct option -f. Patch thanks to
Olaf Rempel <[email protected]> (Closes: #501904).
* debian/rules
- Update to dh(1). (not handling nostrip; Closes: #436257).
* debian/source/format
- New file.
* debian/watch
- New file.
Checksums-Sha1:
c63ee2389a7d98153c344f8f85c096f925b4410a 1150 6tunnel_0.11rc2-3.dsc
ad530930a49bd90c11321c32f1d3e3be533c0bca 2857 6tunnel_0.11rc2-3.debian.tar.gz
9632826fae1047b8f7a6b05351de67ed7a9aa364 13362 6tunnel_0.11rc2-3_i386.deb
Checksums-Sha256:
7850e4e22c9cb6f7374789543789859b6b3f17fe01a2c718ef6be1350e9bf411 1150
6tunnel_0.11rc2-3.dsc
6b3066d46c9504364e507913d3cc7c98b5c9cc54a5b346dcfb2c3e1b569934a3 2857
6tunnel_0.11rc2-3.debian.tar.gz
fc7f8adba757f6949a7082f0a0aa420e19f708cb6f5af73e5359cf39b38c6432 13362
6tunnel_0.11rc2-3_i386.deb
Files:
8f275286c2f2c17746b29c3e51df3740 1150 net optional 6tunnel_0.11rc2-3.dsc
6ec8c29277c3648081a403e0e843ed35 2857 net optional
6tunnel_0.11rc2-3.debian.tar.gz
b537dcf5b0ce6700f684a2766ae6bef5 13362 net optional 6tunnel_0.11rc2-3_i386.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.10 (GNU/Linux)
iEYEARECAAYFAkuigq8ACgkQpdwBkPlyvgNyjwCfe91arwxP5EwY0KS+aZiz6ARG
6+MAn1cEA9XmlTmcgeGdzrhi/jLBxtR/
=Xd9Z
-----END PGP SIGNATURE-----
--- End Message ---