1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-11 05:18:09 +03:00

Merge branch 'v3-2-test' of ssh://git.samba.org/data/git/samba into v3-2-test

This commit is contained in:
Derrell Lipman 2008-03-03 18:27:41 -05:00
commit 8927b50d60
3 changed files with 8 additions and 4 deletions

View File

@ -180,7 +180,7 @@ smb.conf changes
config backend New file
ctdb socket New ""
debug class New No
hidden New No
administrative share New No
lanman auth Changed Default No
ldap debug level New 0
ldap debug threshold New 10
@ -340,7 +340,7 @@ o Andreas Schneider <anschneider@suse.de>
initialization.
* Fix Windows 2008 (Longhorn) join.
* Fix crashbug in winbindd.
* Add share parameter "hidden".
* Add share parameter "administrative share".
o Karolin Seeger <ks@sernet.de>

View File

@ -738,8 +738,11 @@ NTSTATUS gp_find_file(TALLOC_CTX *mem_ctx,
return NT_STATUS_OK;
}
tmp = talloc_asprintf_strupper_m(mem_ctx, "%s/%s/%s", filename, path,
suffix);
path = talloc_strdup_upper(mem_ctx, path);
NT_STATUS_HAVE_NO_MEMORY(path);
tmp = talloc_asprintf(mem_ctx, "%s/%s/%s", filename,
path, suffix);
NT_STATUS_HAVE_NO_MEMORY(tmp);
if (sys_stat(tmp, &sbuf) == 0) {

View File

@ -1216,6 +1216,7 @@ NTSTATUS _lsa_Close(pipes_struct *p, struct lsa_Close *r)
}
close_policy_hnd(p, r->in.handle);
ZERO_STRUCTP(r->out.handle);
return NT_STATUS_OK;
}