openhub.net
Black Duck Software, Inc.
Open Hub
Follow @
OH
Sign In
Join Now
Projects
People
Organizations
Tools
Blog
BDSA
Projects
People
Projects
Organizations
Forums
FuTTY
Settings
|
Report Duplicate
1
I Use This!
×
Login Required
Log in to Open Hub
Remember Me
Inactive
Commits
: Listings
Analyzed
15 days
ago. based on code collected
16 days
ago.
Jan 29, 2024 — Jan 29, 2025
Showing page 27 of 260
Search / Filter on:
Commit Message
Contributor
Files Modified
Lines Added
Lines Removed
Code Location
Date
Add a missing \define I accidentally assumed was there in r9592.
simon
More...
over 12 years ago
Add a missing \define I accidentally assumed was there in r9592.
Simon Tatham
More...
over 12 years ago
Add a bug-compatibility flag to disable the
[email protected]
request. Not currently enabled automatically, but should be usable as a manual workaround.
simon
More...
over 12 years ago
Add a bug-compatibility flag to disable the
[email protected]
request. Not currently enabled automatically, but should be usable as a manual workaround.
Simon Tatham
More...
over 12 years ago
Fix an embarrassing mistake in config box handling which was causing changes to any SSH bug config option to be lost when the config box switched to a different panel, at least on GTK.
simon
More...
over 12 years ago
Fix an embarrassing mistake in config box handling which was causing changes to any SSH bug config option to be lost when the config box switched to a different panel, at least on GTK.
Simon Tatham
More...
over 12 years ago
Move the declaration of smemclr() out of putty.h into misc.h, because one of its uses (in sshaes.c) wasn't picking up the former. Thanks to Ubuntu's gcc for spotting that.
Simon Tatham
More...
over 12 years ago
Move the declaration of smemclr() out of putty.h into misc.h, because one of its uses (in sshaes.c) wasn't picking up the former. Thanks to Ubuntu's gcc for spotting that.
simon
More...
over 12 years ago
Remove an unused variable.
simon
More...
over 12 years ago
Remove an unused variable.
Simon Tatham
More...
over 12 years ago
Introduce a new utility function smemclr(), which memsets things to zero but does it in such a way that over-clever compilers hopefully won't helpfully optimise the call away if you do it just before freeing something or letting it go out of scope. Use this for (hopefully) every memset whose job is to destroy sensitive data that might otherwise be left lying around in the process's memory.
simon
More...
over 12 years ago
Introduce a new utility function smemclr(), which memsets things to zero but does it in such a way that over-clever compilers hopefully won't helpfully optimise the call away if you do it just before freeing something or letting it go out of scope. Use this for (hopefully) every memset whose job is to destroy sensitive data that might otherwise be left lying around in the process's memory.
Simon Tatham
More...
over 12 years ago
Remove a bashism in mksrcarc.sh, without which bob builds fail on Ubuntu (whose /bin/sh is not bash).
simon
More...
over 12 years ago
Remove a bashism in mksrcarc.sh, without which bob builds fail on Ubuntu (whose /bin/sh is not bash).
Simon Tatham
More...
over 12 years ago
gh-34: new pageant icon
Chris West (Faux)
More...
over 12 years ago
Add '-Wall -Werror' to the compile options in the autotools makefile, having just noticed that Makefile.gtk had it and this one doesn't. (Of course, this being autoconf, we can easily enough make it conditional on the compiler actually being gcc.)
simon
More...
over 12 years ago
Add '-Wall -Werror' to the compile options in the autotools makefile, having just noticed that Makefile.gtk had it and this one doesn't. (Of course, this being autoconf, we can easily enough make it conditional on the compiler actually being gcc.)
Simon Tatham
More...
over 12 years ago
Rework the new type-check in sresize so that it doesn't cause a compile warning ('left-hand operand of comma expression has no effect'), which of course becomes fatal under -Werror.
simon
More...
over 12 years ago
Rework the new type-check in sresize so that it doesn't cause a compile warning ('left-hand operand of comma expression has no effect'), which of course becomes fatal under -Werror.
Simon Tatham
More...
over 12 years ago
Remove term_key, which was intended to handle function keys in a cross- platform manner, but which nothing ever called. It thus served only to trap up the unwary. The live function key handling code lives in the frontends, i.e. window.c on Windows and gtkwin.c on Unix.
owen
More...
over 12 years ago
Remove term_key, which was intended to handle function keys in a cross- platform manner, but which nothing ever called. It thus served only to trap up the unwary. The live function key handling code lives in the frontends, i.e. window.c on Windows and gtkwin.c on Unix.
Owen Dunn
More...
over 12 years ago
If pterm's execvp fails when given the whole argument list after -e, and the argument list contains only one string, try again by passing that single string to "$SHELL -c" to be parsed as a shell command. This matches xterm's behaviour (as of xterm 261, at least), and means in practice that users can do _either_ of 'pterm -e some command' and 'pterm -e "some command"'.
simon
More...
over 12 years ago
If pterm's execvp fails when given the whole argument list after -e, and the argument list contains only one string, try again by passing that single string to "$SHELL -c" to be parsed as a shell command. This matches xterm's behaviour (as of xterm 261, at least), and means in practice that users can do _either_ of 'pterm -e some command' and 'pterm -e "some command"'.
Simon Tatham
More...
over 12 years ago
Turns out that the compose-keys fix in r9567 did in fact break one piece of keyboard handling: if Num Lock is on, numeric keypad keys are eaten by the IM, so we must avoid passing them to the IM in the first place if we're in any non-default numeric keypad mode (application or Nethack).
simon
More...
over 12 years ago
Turns out that the compose-keys fix in r9567 did in fact break one piece of keyboard handling: if Num Lock is on, numeric keypad keys are eaten by the IM, so we must avoid passing them to the IM in the first place if we're in any non-default numeric keypad mode (application or Nethack).
Simon Tatham
More...
over 12 years ago
Stop including <gtk/gtkcontainer.h> directly, since a user points out that it'll be absent in GTK 3.
simon
More...
over 12 years ago
Stop including <gtk/gtkcontainer.h> directly, since a user points out that it'll be absent in GTK 3.
Simon Tatham
More...
over 12 years ago
GH-41: Don't run past the end of the term for urls
Chris West (Faux)
More...
over 12 years ago
John Hartnup reports that Apache SSHD's SFTP server responds to FXP_READDIR on an empty directory by returning a zero-length list of filenames, instead of the more common response of a list containing just "." and "..". Stop PSFTP failing an assertion when that happens.
simon
More...
over 12 years ago
John Hartnup reports that Apache SSHD's SFTP server responds to FXP_READDIR on an empty directory by returning a zero-length list of filenames, instead of the more common response of a list containing just "." and "..". Stop PSFTP failing an assertion when that happens.
Simon Tatham
More...
over 12 years ago
←
1
2
…
23
24
25
26
27
28
29
30
31
…
259
260
→
This site uses cookies to give you the best possible experience. By using the site, you consent to our use of cookies. For more information, please see our
Privacy Policy
Agree