mirror of
https://github.com/MidnightCommander/mc
synced 2025-01-22 03:02:06 +03:00
* samba/lib/util.c (tmpdir): Use MC_TMPDIR environment variable.
(automount_lookup): More secure code.
This commit is contained in:
parent
fb4fd57695
commit
6478efd184
@ -1,3 +1,8 @@
|
||||
2004-08-21 Pavel S. Shirshov <pavelsh@mail.ru>
|
||||
|
||||
* samba/lib/util.c (tmpdir): Use MC_TMPDIR environment variable.
|
||||
(automount_lookup): More secure code.
|
||||
|
||||
2004-08-19 Roland Illig <roland.illig@gmx.de>
|
||||
|
||||
* extfs/deb.in (mcdebfs_list): Separated the use of quoted and
|
||||
|
@ -114,7 +114,7 @@ static char *filename_dos(char *path,char *buf);
|
||||
char *tmpdir(void)
|
||||
{
|
||||
char *p;
|
||||
if ((p = getenv("TMPDIR"))) {
|
||||
if ((p = getenv("MC_TMPDIR")) || (p = getenv("TMPDIR"))) {
|
||||
return p;
|
||||
}
|
||||
return "/tmp";
|
||||
@ -1885,20 +1885,17 @@ static char *automount_lookup(char *user_name)
|
||||
|
||||
char *nis_map = (char *)lp_nis_home_map_name();
|
||||
|
||||
char nis_domain[NIS_MAXNAMELEN + 1];
|
||||
char buffer[NIS_MAXATTRVAL + 1];
|
||||
nis_result *result;
|
||||
nis_object *object;
|
||||
entry_obj *entry;
|
||||
|
||||
strncpy(nis_domain, (char *)nis_local_directory(), NIS_MAXNAMELEN);
|
||||
nis_domain[NIS_MAXNAMELEN] = '\0';
|
||||
|
||||
DEBUG(5, ("NIS+ Domain: %s\n", nis_domain));
|
||||
DEBUG(5, ("NIS+ Domain: %s\n", (char *)nis_local_directory()));
|
||||
|
||||
if (strcmp(user_name, last_key))
|
||||
{
|
||||
slprintf(buffer, sizeof(buffer)-1, "[%s=%s]%s.%s", "key", user_name, nis_map, nis_domain);
|
||||
slprintf(buffer, sizeof(buffer)-1, "[%s=%s]%s.%s", "key", user_name, nis_map,
|
||||
(char *)nis_local_directory());
|
||||
DEBUG(5, ("NIS+ querystring: %s\n", buffer));
|
||||
|
||||
if (result = nis_list(buffer, RETURN_RESULT, NULL, NULL))
|
||||
|
Loading…
Reference in New Issue
Block a user