Bugzilla – Attachment 1656 Details for
Bug 1615
the pathname length of home directory is limited to less than 256 chars
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
patch solving the problem
openssh-5.2p1-pathmax.patch (text/plain), 571 bytes, created by
jchadima
on 2009-06-30 22:10:04 AEST
(
hide
)
Description:
patch solving the problem
Filename:
MIME Type:
Creator:
jchadima
Created:
2009-06-30 22:10:04 AEST
Size:
571 bytes
patch
obsolete
>diff -up openssh-5.2p1/ssh.c.pathmax openssh-5.2p1/ssh.c >--- openssh-5.2p1/ssh.c.pathmax 2009-06-29 22:13:17.251360372 +0200 >+++ openssh-5.2p1/ssh.c 2009-06-29 22:14:46.036292525 +0200 >@@ -49,6 +49,7 @@ > #include <sys/resource.h> > #include <sys/ioctl.h> > #include <sys/socket.h> >+#include <sys/param.h> > > #include <ctype.h> > #include <errno.h> >@@ -209,7 +210,7 @@ int > main(int ac, char **av) > { > int i, opt, exit_status, use_syslog; >- char *p, *cp, *line, buf[256]; >+ char *p, *cp, *line, buf[PATH_MAX]; > struct stat st; > struct passwd *pw; > int dummy, timeout_ms;
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 1615
: 1656 |
1657