Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 605030 Details for
Bug 848223
cifs.upcall will need to search locations other than /tmp for Kerberos credential caches
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
if an entry is a directory, set the ccname type to DIR and proceed (untested)
cifs-utils-5.6-dir.patch (text/plain), 573 bytes, created by
Nalin Dahyabhai
on 2012-08-16 21:45:49 UTC
(
hide
)
Description:
if an entry is a directory, set the ccname type to DIR and proceed (untested)
Filename:
MIME Type:
Creator:
Nalin Dahyabhai
Created:
2012-08-16 21:45:49 UTC
Size:
573 bytes
patch
obsolete
>If we encounter a subdirectory, check if it's a "DIR" ccache. Otherwise, >continue as before, checking if it's a "FILE" ccache. >--- cifs-utils-5.6/cifs.upcall.c >+++ cifs-utils-5.6/cifs.upcall.c >@@ -292,6 +292,11 @@ static char *find_krb5_cc(const char *di > free(namelist[i]); > continue; > } >+ if (S_ISDIR(sbuf.st_mode)) { >+ snprintf(ccname, sizeof(ccname), "DIR:%s/%s", dirname, >+ namelist[i]->d_name); >+ credpath = ccname + 4; >+ } else > if (!S_ISREG(sbuf.st_mode)) { > syslog(LOG_DEBUG, "%s: %s is not a regular file", > __func__, credpath);
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 848223
: 605030 |
605032