| Summary: | missing escape char in "Bad escaped character" message | ||
|---|---|---|---|
| Product: | Portable OpenSSH | Reporter: | Frank Mohr <f_mohr> |
| Component: | sftp | Assignee: | OpenSSH Bugzilla mailing list <openssh-bugs> |
| Status: | CLOSED FIXED | ||
| Severity: | trivial | ||
| Priority: | P2 | ||
| Version: | -current | ||
| Hardware: | All | ||
| OS: | All | ||
Fix applied - thanks! |
in sftp.c (line 372 in 3.8.1p1) the \ escapes the following %c format current: error("Bad escaped character '\%c'", should be: error("Bad escaped character '\\%c'", At least the IBM compiler on AIX complains about that.