In openssh_cvs/openbsd-compat:
readpassphrase.c: In function `readpassphrase':
readpassphrase.c:116: warning: operation on `ch' may be undefined
The offending line is:
ch = ch &= 0x7f;
probably should be:
ch &= 0x7f;
In openssh-2.9p2:
readpass.c: In function `read_passphrase':
readpass.c:120: warning: passing arg 2 of `ssh_askpass' discards
qualifiers from pointer target type
It seems to have shut up about the sftp-* printf format warnings.
Seems to work OK...
Reasonably Related Threads
- 2.2.0p1 PATCH: ssh/scp/slogin will invoke ssh-askpass
- [David Huggins-Daines <dhd@plcom.on.ca>] Bug#52414: ssh-add uses ssh-askpass, but ssh doesn't
- Compile-time warning in readpass.c
- Keychain Patch Try II
- [Bug 234] New: OpenSSH does not compile on OpenBSD 3.1
