1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-26 10:04:02 +03:00

Makefile: Added DGUX changes for intel.

namedbwork.c: Minor tidyup for election flah.
util.c:		Fix for broken readdir detectino code.
version.h:	Back to 1.9.17alpha3 - will be updated by release script.
Jeremy jallison@whistle.com
(This used to be commit 26635733a746dee2435da7ce228def5f2f292bba)
This commit is contained in:
Samba Release Account 1997-07-03 20:45:06 +00:00
parent 4a2cc7bb2b
commit 3e37f8f70f
3 changed files with 10 additions and 10 deletions

View File

@ -1 +1 @@
#define VERSION "1.9.17alpha4"
#define VERSION "1.9.17alpha3"

View File

@ -3403,13 +3403,6 @@ char *readdirname(void *p)
dname = ptr->d_name;
{
static pstring buf;
strcpy(buf, dname);
unix_to_dos(buf, True);
dname = buf;
}
#ifdef NEXT2
if (telldir(p) < 0) return(NULL);
#endif
@ -3425,10 +3418,17 @@ char *readdirname(void *p)
broken_readdir = True;
}
if (broken_readdir)
return(dname-2);
dname = dname - 2;
}
#endif
{
static pstring buf;
strcpy(buf, dname);
unix_to_dos(buf, True);
dname = buf;
}
return(dname);
}

View File

@ -122,7 +122,7 @@ static struct work_record *make_workgroup(char *name)
/* WfWg uses 01040b01 */
/* Win95 uses 01041501 */
/* NTAS uses ???????? */
work->ElectionCriterion = (MAINTAIN_LIST<<1)|(ELECTION_VERSION<<8);
work->ElectionCriterion = (MAINTAIN_LIST)|(ELECTION_VERSION<<8);
work->ElectionCriterion |= (lp_os_level() << 24);
if (lp_domain_master()) {
work->ElectionCriterion |= 0x80;