| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
| | |
| | |
| | |
| | | |
Jeremy.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Ok - now we're no longer trying to reach a silly 1k loc target,
change the formatting to be *readable* - eg.
change if (x) y else z to be :
if (x)
y
else
z
and other compact sillyness. Oh look - when I did this I found
some areas where we *WEREN'T CHECKING SYSTEM CALL ERROR RETURNS !!!!*
CompSci 101 guys....... :-).
Jeremy.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
of people somehow thinking this was related to user profiles.
Hope this is ok Herb.
jerry
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
allocation
to be done. Without it just does the ftruncate.
Jeremy.
|
| | |
| | |
| | |
| | | |
Jeremy.
|
| | |
| | |
| | |
| | | |
Jeremy.
|
| | |
| | |
| | |
| | |
| | | |
- Install winbind daemon, client programs, nss and pam libraries
- Removed codepage stuff so spec file works with current HEAD branch
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
built as non-root user, assuming you have permissions set up properly
in your /usr/src/redhat directory.
Added nsswitch sub-target to all target.
|
| | | |
|
| | |
| | |
| | |
| | | |
Jeremy.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
changed some code to exploit the fact that Realloc(NULL, size) == malloc(size)
fixed some possible mem leaks, or seg faults.
thanks to andreas moroder (mallocs not checked in client/client.c, client/smbumount.c)
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
This removes the --with-nisplus since the nisplus
smbpasswd file is unmaintained and this option
only seems to confuse people.
Also renamed --with-dfs to --with-dce-dfs to make is clearer
that is not MS-DFS
Finally added the --with-tdbsam option back in since we will
be supporting it.
jerry
|
| | |
| | |
| | |
| | | |
Jeremy.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
locking database". When calling locking_init(True), we should not
try to zero of the locking.tdb or brlock.tdb since we have opened
the database in read_only more.
jerry
|
| | |
| | |
| | |
| | | |
Jermey.
|
| | |
| | |
| | |
| | | |
Jeremy.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
We were testing for HAVE_TRUNCATED_SALT before checking for
the need to use -lcrypt and thus setting HAVE_TRUNCATED_SALT.
Reordered the configure.in script to fix this.
jerry
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
and regenerated docs.
jerry
|
| | |
| | |
| | |
| | | |
Jeremy.
|
| | |
| | |
| | |
| | | |
Jeremy.
|
| | |
| | |
| | |
| | | |
Jeremy.
|
| | |
| | |
| | |
| | |
| | | |
Removed old #ifdef 0'ed code.
Jeremy
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
style printing. Need to set the errocode to ERRbuftoosmall
if lp_lanman_printing_only() and the max data return count == 0.
tested against WInNT 4.0 Sp6a, Win2k [no sp|sp1|sp2]
jerry
|
| | |
| | |
| | |
| | | |
Jeremy.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
which disables the spoolss pipe. This provides us
with full backwards compatibility with Samba 2.0.x and NT
printing clients.
The reason for this patch is that an NT print server cannot
have a printer with no driver installed. Samba can, so NT clients
get confused because they have never seen that before. So now
we start installing local drivers for printers served using MS-RPC.
But the NT client tries to issue an open_printer_ex() call with
the printer rights of the locally logged in user (e.g.
the local administrator would try to open this printer
with PRINTER_ADMINISTER_ACCESS). If this fails, the client
puts a nice "access denied. unable to connect" message in the title
bar of the print queue window.
Jeremy, i know we need to talk about this. See api_DosPrintQGetInfo()
in smbd/lanman.c.
|
| | |
| | |
| | |
| | | |
Jeremy.
|
| | |
| | |
| | |
| | | |
jerry
|
| | |
| | |
| | |
| | |
| | | |
thanks to andreas moroder
(this builds ok)
|
| | |
| | |
| | |
| | | |
Volker
|
| | |
| | |
| | |
| | | |
Jeremy.
|
| | |
| | |
| | |
| | | |
Jeremy.
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | | |
--with-profiling-data option name.
|
| | |
| | |
| | |
| | | |
--with-profiling-data option name.
|
| | |
| | |
| | |
| | | |
Jeremy.
|
| | |
| | |
| | |
| | | |
Jeremy.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Ok - now we're no longer trying to reach a silly 1k loc target,
change the formatting to be *readable* - eg.
change if (x) y else z to be :
if (x)
y
else
z
and other compact sillyness. Oh look - when I did this I found
some areas where we *WEREN'T CHECKING SYSTEM CALL ERROR RETURNS !!!!*
CompSci 101 guys....... :-).
Jeremy.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
of people somehow thinking this was related to user profiles.
Hope this is ok Herb.
jerry
|
| | |
| | |
| | |
| | | |
rpms build in both head and 2.2 - phew.
|
| | | |
|
| | |
| | |
| | |
| | | |
Jeremy.
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
allocation
to be done. Without it just does the ftruncate.
Jeremy.
|
| | |
| | |
| | |
| | | |
Jeremy.
|
| | |
| | |
| | |
| | | |
Jeremy.
|
| | | |
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
in. (-:
Jeremy or JHT, could you please take a quick look and see whether I have
done anything silly?
|