bugzilla-daemon at bugzilla.mindrot.org
2009-Apr-07 04:36 UTC
[Bug 1588] New: sftp client produces
https://bugzilla.mindrot.org/show_bug.cgi?id=1588
Summary: sftp client produces
Product: Portable OpenSSH
Version: 5.2p1
Platform: All
OS/Version: All
Status: NEW
Severity: normal
Priority: P2
Component: sftp
AssignedTo: unassigned-bugs at mindrot.org
ReportedBy: gsocsftp at v6shell.org
CC: gsocsftp at v6shell.org
--
Configure bugmail: https://bugzilla.mindrot.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching the assignee of the bug.
bugzilla-daemon at bugzilla.mindrot.org
2009-Apr-07 04:43 UTC
[Bug 1588] sftp client produces
https://bugzilla.mindrot.org/show_bug.cgi?id=1588 --- Comment #1 from J.A. Neitzel <gsocsftp at v6shell.org> 2009-04-07 14:43:43 --- Created an attachment (id=1624) --> (http://bugzilla.mindrot.org/attachment.cgi?id=1624) Patch to remove "Connecting to <host>..." message from sftp.c This patch is for Portable OpenSSH. -- Configure bugmail: https://bugzilla.mindrot.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching the assignee of the bug.
bugzilla-daemon at bugzilla.mindrot.org
2009-Apr-07 04:45 UTC
[Bug 1588] sftp client produces
https://bugzilla.mindrot.org/show_bug.cgi?id=1588 --- Comment #2 from J.A. Neitzel <gsocsftp at v6shell.org> 2009-04-07 14:45:34 --- Created an attachment (id=1625) --> (http://bugzilla.mindrot.org/attachment.cgi?id=1625) Patch to remove "Connecting to <host>..." message from sftp.c This patch is for usr.bin/ssh/sftp.c in the OpenBSD source tree. -- Configure bugmail: https://bugzilla.mindrot.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching the assignee of the bug.
bugzilla-daemon at bugzilla.mindrot.org
2009-Apr-07 05:00 UTC
[Bug 1588] sftp client produces
https://bugzilla.mindrot.org/show_bug.cgi?id=1588 --- Comment #3 from J.A. Neitzel <gsocsftp at v6shell.org> 2009-04-07 15:00:31 --- In response to this message to the openssh-unix-dev mailing list: https://lists.mindrot.org/pipermail/openssh-unix-dev/2009-April/027560.html . The removal of this message should be OK. There is a corresponding message in the debug1 output when user invokes sftp(1) as `sftp -v ...' . -- Configure bugmail: https://bugzilla.mindrot.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching the assignee of the bug.
bugzilla-daemon at bugzilla.mindrot.org
2009-Apr-07 05:04 UTC
[Bug 1588] sftp client produces unnecessary message upon connecting to host
https://bugzilla.mindrot.org/show_bug.cgi?id=1588
J.A. Neitzel <gsocsftp at v6shell.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|sftp client produces |sftp client produces
| |unnecessary message upon
| |connecting to host
--
Configure bugmail: https://bugzilla.mindrot.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching the assignee of the bug.
bugzilla-daemon at bugzilla.mindrot.org
2009-Apr-07 05:11 UTC
[Bug 1588] sftp client produces unnecessary message upon connecting to host
https://bugzilla.mindrot.org/show_bug.cgi?id=1588
J.A. Neitzel <gsocsftp at v6shell.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|unassigned-bugs at mindrot.org |gsocsftp at v6shell.org
--
Configure bugmail: https://bugzilla.mindrot.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching the assignee of the bug.
bugzilla-daemon at bugzilla.mindrot.org
2009-May-01 12:46 UTC
[Bug 1588] sftp client produces unnecessary message upon connecting to host
https://bugzilla.mindrot.org/show_bug.cgi?id=1588
J.A. Neitzel <gsocsftp at v6shell.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|gsocsftp at v6shell.org |unassigned-bugs at
mindrot.org
CC|gsocsftp at v6shell.org |
--- Comment #4 from J.A. Neitzel <gsocsftp at v6shell.org> 2009-05-01
22:46:34 ---
Reset assignee to default.
Reset status to new.
--
Configure bugmail: https://bugzilla.mindrot.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching the assignee of the bug.
bugzilla-daemon at bugzilla.mindrot.org
2009-Oct-06 04:18 UTC
[Bug 1588] sftp client produces unnecessary message upon connecting to host
https://bugzilla.mindrot.org/show_bug.cgi?id=1588
Damien Miller <djm at mindrot.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |djm at mindrot.org
Blocks| |1626
--- Comment #5 from Damien Miller <djm at mindrot.org> 2009-10-06 15:18:14
EST ---
yeah, this log line doesn't actually give you any additional
information (unlike, e.g., telnet's) so I don't see any harm in nuking
it, or perhaps delaying it until after the connection has been
confirmed (i.e. after sftp-client.c:do_init() has returned.)
--
Configure bugmail: https://bugzilla.mindrot.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching the assignee of the bug.
You are watching someone on the CC list of the bug.
bugzilla-daemon at bugzilla.mindrot.org
2009-Nov-20 00:29 UTC
[Bug 1588] sftp client produces unnecessary message upon connecting to host
https://bugzilla.mindrot.org/show_bug.cgi?id=1588
Damien Miller <djm at mindrot.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Attachment #1624|0 |1
is obsolete| |
Attachment #1625|0 |1
is obsolete| |
Attachment #1724| |ok?(dtucker at zip.com.au)
Flag| |
--- Comment #6 from Damien Miller <djm at mindrot.org> 2009-11-20 11:29:33
EST ---
Created an attachment (id=1724)
--> (https://bugzilla.mindrot.org/attachment.cgi?id=1724)
delay printing connect message until after sftp protocol is raised
This delays printing the message until after the sftp session has been
established (post do_init()):
djm at localhost's password:
Connected to fuyu.
sftp>
--
Configure bugmail: https://bugzilla.mindrot.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching the assignee of the bug.
You are watching someone on the CC list of the bug.
bugzilla-daemon at bugzilla.mindrot.org
2009-Nov-20 00:48 UTC
[Bug 1588] sftp client produces unnecessary message upon connecting to host
https://bugzilla.mindrot.org/show_bug.cgi?id=1588
Darren Tucker <dtucker at zip.com.au> changed:
What |Removed |Added
----------------------------------------------------------------------------
Attachment #1724|ok?(dtucker at zip.com.au) |ok+
Flag| |
--
Configure bugmail: https://bugzilla.mindrot.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching the assignee of the bug.
You are watching someone on the CC list of the bug.
bugzilla-daemon at bugzilla.mindrot.org
2009-Nov-20 00:54 UTC
[Bug 1588] sftp client produces unnecessary message upon connecting to host
https://bugzilla.mindrot.org/show_bug.cgi?id=1588
Damien Miller <djm at mindrot.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
--- Comment #7 from Damien Miller <djm at mindrot.org> 2009-11-20 11:54:20
EST ---
patch has been applied. will be in openssh-5.4
--
Configure bugmail: https://bugzilla.mindrot.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching the assignee of the bug.
You are watching someone on the CC list of the bug.
bugzilla-daemon at bugzilla.mindrot.org
2010-Mar-25 23:51 UTC
[Bug 1588] sftp client produces unnecessary message upon connecting to host
https://bugzilla.mindrot.org/show_bug.cgi?id=1588
Darren Tucker <dtucker at zip.com.au> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
--- Comment #8 from Darren Tucker <dtucker at zip.com.au> 2010-03-26
10:51:58 EST ---
With the release of 5.4p1, this bug is now considered closed.
--
Configure bugmail: https://bugzilla.mindrot.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching the assignee of the bug.
You are watching someone on the CC list of the bug.