Bugzilla – Attachment 1822 Details for
Bug 1739
getcwd does not support size zero argument on Solaris
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Don't try to derelativise the AuthorizedKeysFile value
dont_derelativise_authorizedkeysfile_option.patch (text/plain), 683 bytes, created by
Yann Rouillard
on 2010-03-26 08:53:29 AEDT
(
hide
)
Description:
Don't try to derelativise the AuthorizedKeysFile value
Filename:
MIME Type:
Creator:
Yann Rouillard
Created:
2010-03-26 08:53:29 AEDT
Size:
683 bytes
patch
obsolete
>--- openssh-5.4p1/servconf.c.orig 2010-03-25 19:10:47.783942371 +0100 >+++ openssh-5.4p1/servconf.c 2010-03-25 19:10:52.526955504 +0100 >@@ -1223,7 +1252,18 @@ > charptr = (opcode == sAuthorizedKeysFile) ? > &options->authorized_keys_file : > &options->authorized_keys_file2; >- goto parse_filename; >+ >+ arg = strdelim(&cp); >+ if (!arg || *arg == '\0') >+ fatal("%s line %d: missing file name.", >+ filename, linenum); >+ if (*activep && *charptr == NULL) { >+ *charptr = xstrdup(arg); >+ /* increase optional counter */ >+ if (intptr != NULL) >+ *intptr = *intptr + 1; >+ } >+ break; > > case sClientAliveInterval: > intptr = &options->client_alive_interval;
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 1739
:
1821
| 1822