RE: Connecting Window Box via Samba to RCS on UNIX

2002-10-30 Thread Kunz Erwin
 Hello,
 
 I'm moving from RCS UNIX Client to Windows and wanted to connect my
 repository using Samba instead of NFS-Client.
 
 After configuration everything I was able to run
 
 - rlog
 - co (without lock)
 
 without problem.
 
 Checking out a file with lock did not work: access denied. After some
 investigation I found that it only work if the file 
 (on UNIX) has the same owner as that used to connect via Samba. But there
 are several user allowed to access the repository.
 
 extract of smb.conf
 [CopyRCS]
common = SCADA v7.3 RCS 
path = /rcs/CopyRCS/rcshost
read only = no
oplocks = no
force group = users 
browseable = yes
write list = varelac, schneigu, galliker, berrib, kunze
force mask = 0775
directory mask = 0775
 
 Can somebody help me? What am I doing wrong?
 
 Thanks
 
 erwin kunz
 mailto:erwin.kunz;ch.telegyr.com
 



CVS update: samba/source/lib

2002-10-30 Thread jelmer

Date:   Wed Oct 30 11:52:36 2002
Author: jelmer

Update of /home/cvs/samba/source/lib
In directory dp.samba.org:/tmp/cvs-serv29719/lib

Added Files:
module.c 
Log Message:

Add initial vesion of new module system


Revisions:
module.cNONE = 1.1
http://www.samba.org/cgi-bin/cvsweb/samba/source/lib/module.c?rev=1.1



CVS update: samba/source/include

2002-10-30 Thread jelmer

Date:   Wed Oct 30 12:01:19 2002
Author: jelmer

Update of /home/cvs/samba/source/include
In directory dp.samba.org:/tmp/cvs-serv31097/include

Modified Files:
smb.h 
Log Message:

Add init_module_function typedef for new module system


Revisions:
smb.h   1.460 = 1.461

http://www.samba.org/cgi-bin/cvsweb/samba/source/include/smb.h?r1=1.460r2=1.461



CVS update: samba/source

2002-10-30 Thread tridge

Date:   Wed Oct 30 12:03:30 2002
Author: tridge

Update of /home/cvs/samba/source
In directory dp.samba.org:/tmp/cvs-serv31272

Modified Files:
configure.in 
Log Message:
added a timegm() function for systems that don't have it


Revisions:
configure.in1.357 = 1.358
http://www.samba.org/cgi-bin/cvsweb/samba/source/configure.in?r1=1.357r2=1.358



CVS update: samba/source/lib

2002-10-30 Thread tridge

Date:   Wed Oct 30 12:03:40 2002
Author: tridge

Update of /home/cvs/samba/source/lib
In directory dp.samba.org:/tmp/cvs-serv31301

Modified Files:
replace.c 
Log Message:
added a timegm() function for systems that don't have it


Revisions:
replace.c   1.29 = 1.30
http://www.samba.org/cgi-bin/cvsweb/samba/source/lib/replace.c?r1=1.29r2=1.30



CVS update: samba/source/include

2002-10-30 Thread jelmer

Date:   Wed Oct 30 12:07:49 2002
Author: jelmer

Update of /home/cvs/samba/source/include
In directory dp.samba.org:/tmp/cvs-serv31478/include

Modified Files:
smb.h 
Log Message:

- Remove RTLD_GLOBAL
- make smb_load_module() return the return value of init_module()


Revisions:
smb.h   1.461 = 1.462

http://www.samba.org/cgi-bin/cvsweb/samba/source/include/smb.h?r1=1.461r2=1.462



CVS update: samba/docs/docbook/devdoc

2002-10-30 Thread jelmer

Date:   Wed Oct 30 12:50:47 2002
Author: jelmer

Update of /home/cvs/samba/docs/docbook/devdoc
In directory dp.samba.org:/tmp/cvs-serv3146/devdoc

Modified Files:
unix-smb.sgml 
Log Message:

The locking description in this doc is outdated - note that


Revisions:
unix-smb.sgml   1.1 = 1.2

http://www.samba.org/cgi-bin/cvsweb/samba/docs/docbook/devdoc/unix-smb.sgml?r1=1.1r2=1.2



CVS update: samba/source/python

2002-10-30 Thread tpot

Date:   Wed Oct 30 14:52:53 2002
Author: tpot

Update of /data/cvs/samba/source/python
In directory dp.samba.org:/tmp/cvs-serv14539

Modified Files:
py_smb.c 
Log Message:
Fix boog in argument list for nt_create_andx.


Revisions:
py_smb.c1.5 = 1.6
http://www.samba.org/cgi-bin/cvsweb/samba/source/python/py_smb.c?r1=1.5r2=1.6



Re: CVS update: samba/source/lib

2002-10-30 Thread jra
On Wed, Oct 30, 2002 at 07:07:49AM -0500, [EMAIL PROTECTED] wrote:
 
 Date: Wed Oct 30 12:07:49 2002
 Author:   jelmer
 
 Update of /home/cvs/samba/source/lib
 In directory dp.samba.org:/tmp/cvs-serv31478/lib
 
 Modified Files:
   module.c 
 Log Message:
 
 - Remove RTLD_GLOBAL
 - make smb_load_module() return the return value of init_module()

Jelmer,

You are writing platform specific code here. Not all
systems have dlopen. Please change this to call the sys_dlXXX
functions instead. This way they can be wrapped for systems
that use a different interface.

Jeremy.



Re: CVS update: samba/source/lib

2002-10-30 Thread Jelmer Vernooij
On Wed, Oct 30, 2002 at 04:59:29PM +, [EMAIL PROTECTED] wrote about 'Re: CVS 
update: samba/source/lib':
 On Wed, Oct 30, 2002 at 07:07:49AM -0500, [EMAIL PROTECTED] wrote:

  Date:   Wed Oct 30 12:07:49 2002
  Author: jelmer

  Update of /home/cvs/samba/source/lib
  In directory dp.samba.org:/tmp/cvs-serv31478/lib

  Modified Files:
  module.c 
  Log Message:

  - Remove RTLD_GLOBAL
  - make smb_load_module() return the return value of init_module()

   You are writing platform specific code here. Not all
 systems have dlopen. Please change this to call the sys_dlXXX
 functions instead. This way they can be wrapped for systems
 that use a different interface.
Oops, forgot that one :-/ Fixed.

Jelmer

-- 
Jelmer Vernooij [EMAIL PROTECTED] - http://nl.linux.org/~jelmer/
 18:50:59 up 11:44,  6 users,  load average: 0.27, 0.40, 0.33



msg01493/pgp0.pgp
Description: PGP signature


CVS update: samba/source/lib

2002-10-30 Thread jmcd

Date:   Wed Oct 30 18:18:25 2002
Author: jmcd

Update of /home/cvs/samba/source/lib
In directory dp.samba.org:/tmp/cvs-serv860/lib

Modified Files:
replace.c 
Log Message:
Fix build.  Don't use BSD setenv.  Use POSIX putenv.

Jeremy, it wasn't me!!


Revisions:
replace.c   1.30 = 1.31
http://www.samba.org/cgi-bin/cvsweb/samba/source/lib/replace.c?r1=1.30r2=1.31



CVS update: samba/source

2002-10-30 Thread jelmer

Date:   Wed Oct 30 19:22:53 2002
Author: jelmer

Update of /home/cvs/samba/source
In directory dp.samba.org:/tmp/cvs-serv7272

Modified Files:
  Tag: SAMBA_3_0
configure 
Log Message:

Rerun autoconf


Revisions:
configure   1.282.2.10 = 1.282.2.11

http://www.samba.org/cgi-bin/cvsweb/samba/source/configure?r1=1.282.2.10r2=1.282.2.11



CVS update: samba/source

2002-10-30 Thread jelmer

Date:   Wed Oct 30 19:23:22 2002
Author: jelmer

Update of /home/cvs/samba/source
In directory dp.samba.org:/tmp/cvs-serv7325

Modified Files:
configure 
Log Message:

Rerun autoconf


Revisions:
configure   1.338 = 1.339
http://www.samba.org/cgi-bin/cvsweb/samba/source/configure?r1=1.338r2=1.339



CVS update: samba/source/libads

2002-10-30 Thread jmcd

Date:   Wed Oct 30 20:31:02 2002
Author: jmcd

Update of /home/cvs/samba/source/libads
In directory dp.samba.org:/tmp/cvs-serv13141/libads

Modified Files:
  Tag: SAMBA_3_0
ads_utils.c 
Log Message:
Take out gcb2gtype and gtype2gcb fns.  They were using symbols not defined
in 3.0 (new SAM in HEAD).  Nobody was referencing these fns...


Revisions:
ads_utils.c 1.2.2.2 = 1.2.2.3

http://www.samba.org/cgi-bin/cvsweb/samba/source/libads/ads_utils.c?r1=1.2.2.2r2=1.2.2.3



CVS update: samba/source/client

2002-10-30 Thread jra

Date:   Thu Oct 31 00:20:18 2002
Author: jra

Update of /data/cvs/samba/source/client
In directory dp.samba.org:/tmp/cvs-serv319/client

Modified Files:
  Tag: APPLIANCE_HEAD
client.c smbspool.c 
Log Message:
   --
  /  \
 /  REST  \
/IN\
   /   PEACE\
  /  \
  |global_myname |
  |  global_myworkgroup  |
  |  |
  |  30 October  |
  |  |
  | 2002 |
  |  |
  | You will not be |
  |missed   |
  |  |
 *| *  *  *  | *
_)/\\_//(\/(/\)/\//\/\///|_)___

Made explicit when we're asking for a dos string, or
a UNIX string. We're still broken w.r.t. codepage issues,
but now hopefully we have a chance to fix it and we're
no worse than before.

Look for the elements of this code in lib/util.c to be
added to 3.0.x and HEAD soon.

Jeremy.

Attempt to make progress on CR#663. Needs *extensive*
testing.


Revisions:
client.c1.146.2.5 = 1.146.2.6

http://www.samba.org/cgi-bin/cvsweb/samba/source/client/client.c?r1=1.146.2.5r2=1.146.2.6
smbspool.c  1.4.2.2 = 1.4.2.3

http://www.samba.org/cgi-bin/cvsweb/samba/source/client/smbspool.c?r1=1.4.2.2r2=1.4.2.3



CVS update: samba/source/libsmb

2002-10-30 Thread jra

Date:   Thu Oct 31 00:20:19 2002
Author: jra

Update of /data/cvs/samba/source/libsmb
In directory dp.samba.org:/tmp/cvs-serv319/libsmb

Modified Files:
  Tag: APPLIANCE_HEAD
cli_lsarpc.c cli_netlogon.c cli_pipe_util.c cliconnect.c 
libsmbclient.c namequery.c nmblib.c passchange.c 
Log Message:
   --
  /  \
 /  REST  \
/IN\
   /   PEACE\
  /  \
  |global_myname |
  |  global_myworkgroup  |
  |  |
  |  30 October  |
  |  |
  | 2002 |
  |  |
  | You will not be |
  |missed   |
  |  |
 *| *  *  *  | *
_)/\\_//(\/(/\)/\//\/\///|_)___

Made explicit when we're asking for a dos string, or
a UNIX string. We're still broken w.r.t. codepage issues,
but now hopefully we have a chance to fix it and we're
no worse than before.

Look for the elements of this code in lib/util.c to be
added to 3.0.x and HEAD soon.

Jeremy.

Attempt to make progress on CR#663. Needs *extensive*
testing.


Revisions:
cli_lsarpc.c1.2.2.5 = 1.2.2.6

http://www.samba.org/cgi-bin/cvsweb/samba/source/libsmb/cli_lsarpc.c?r1=1.2.2.5r2=1.2.2.6
cli_netlogon.c  1.21.2.4 = 1.21.2.5

http://www.samba.org/cgi-bin/cvsweb/samba/source/libsmb/cli_netlogon.c?r1=1.21.2.4r2=1.21.2.5
cli_pipe_util.c 1.4.2.3 = 1.4.2.4

http://www.samba.org/cgi-bin/cvsweb/samba/source/libsmb/cli_pipe_util.c?r1=1.4.2.3r2=1.4.2.4
cliconnect.c1.2.2.18 = 1.2.2.19

http://www.samba.org/cgi-bin/cvsweb/samba/source/libsmb/cliconnect.c?r1=1.2.2.18r2=1.2.2.19
libsmbclient.c  1.50.4.1 = 1.50.4.2

http://www.samba.org/cgi-bin/cvsweb/samba/source/libsmb/libsmbclient.c?r1=1.50.4.1r2=1.50.4.2
namequery.c 1.48.2.26 = 1.48.2.27

http://www.samba.org/cgi-bin/cvsweb/samba/source/libsmb/namequery.c?r1=1.48.2.26r2=1.48.2.27
nmblib.c1.56.2.6 = 1.56.2.7

http://www.samba.org/cgi-bin/cvsweb/samba/source/libsmb/nmblib.c?r1=1.56.2.6r2=1.56.2.7
passchange.c1.5 = 1.5.2.1

http://www.samba.org/cgi-bin/cvsweb/samba/source/libsmb/passchange.c?r1=1.5r2=1.5.2.1



CVS update: samba/source/nmbd

2002-10-30 Thread jra

Date:   Thu Oct 31 00:20:20 2002
Author: jra

Update of /data/cvs/samba/source/nmbd
In directory dp.samba.org:/tmp/cvs-serv319/nmbd

Modified Files:
  Tag: APPLIANCE_HEAD
nmbd.c nmbd_become_dmb.c nmbd_become_lmb.c nmbd_browsesync.c 
nmbd_elections.c nmbd_incomingdgrams.c nmbd_incomingrequests.c 
nmbd_logonnames.c nmbd_mynames.c nmbd_namelistdb.c 
nmbd_nameregister.c nmbd_packets.c nmbd_processlogon.c 
nmbd_sendannounce.c nmbd_serverlistdb.c nmbd_workgroupdb.c 
Log Message:
   --
  /  \
 /  REST  \
/IN\
   /   PEACE\
  /  \
  |global_myname |
  |  global_myworkgroup  |
  |  |
  |  30 October  |
  |  |
  | 2002 |
  |  |
  | You will not be |
  |missed   |
  |  |
 *| *  *  *  | *
_)/\\_//(\/(/\)/\//\/\///|_)___

Made explicit when we're asking for a dos string, or
a UNIX string. We're still broken w.r.t. codepage issues,
but now hopefully we have a chance to fix it and we're
no worse than before.

Look for the elements of this code in lib/util.c to be
added to 3.0.x and HEAD soon.

Jeremy.

Attempt to make progress on CR#663. Needs *extensive*
testing.


Revisions:
nmbd.c  1.102.2.10 = 1.102.2.11

http://www.samba.org/cgi-bin/cvsweb/samba/source/nmbd/nmbd.c?r1=1.102.2.10r2=1.102.2.11
nmbd_become_dmb.c   1.11.2.2 = 1.11.2.3

http://www.samba.org/cgi-bin/cvsweb/samba/source/nmbd/nmbd_become_dmb.c?r1=1.11.2.2r2=1.11.2.3
nmbd_become_lmb.c   1.19.2.2 = 1.19.2.3

http://www.samba.org/cgi-bin/cvsweb/samba/source/nmbd/nmbd_become_lmb.c?r1=1.19.2.2r2=1.19.2.3
nmbd_browsesync.c   1.22.2.2 = 1.22.2.3

http://www.samba.org/cgi-bin/cvsweb/samba/source/nmbd/nmbd_browsesync.c?r1=1.22.2.2r2=1.22.2.3
nmbd_elections.c1.13.2.3 = 1.13.2.4

http://www.samba.org/cgi-bin/cvsweb/samba/source/nmbd/nmbd_elections.c?r1=1.13.2.3r2=1.13.2.4
nmbd_incomingdgrams.c   1.15.4.2 = 1.15.4.3

http://www.samba.org/cgi-bin/cvsweb/samba/source/nmbd/nmbd_incomingdgrams.c?r1=1.15.4.2r2=1.15.4.3
nmbd_incomingrequests.c 1.16.2.2 = 1.16.2.3

http://www.samba.org/cgi-bin/cvsweb/samba/source/nmbd/nmbd_incomingrequests.c?r1=1.16.2.2r2=1.16.2.3
nmbd_logonnames.c   1.8.2.3 = 1.8.2.4

http://www.samba.org/cgi-bin/cvsweb/samba/source/nmbd/nmbd_logonnames.c?r1=1.8.2.3r2=1.8.2.4
nmbd_mynames.c  1.14.2.4 = 1.14.2.5

http://www.samba.org/cgi-bin/cvsweb/samba/source/nmbd/nmbd_mynames.c?r1=1.14.2.4r2=1.14.2.5
nmbd_namelistdb.c   1.21.2.2 = 1.21.2.3

http://www.samba.org/cgi-bin/cvsweb/samba/source/nmbd/nmbd_namelistdb.c?r1=1.21.2.2r2=1.21.2.3
nmbd_nameregister.c 1.12.2.4 = 1.12.2.5

http://www.samba.org/cgi-bin/cvsweb/samba/source/nmbd/nmbd_nameregister.c?r1=1.12.2.4r2=1.12.2.5
nmbd_packets.c  1.36.2.6 = 1.36.2.7

http://www.samba.org/cgi-bin/cvsweb/samba/source/nmbd/nmbd_packets.c?r1=1.36.2.6r2=1.36.2.7
nmbd_processlogon.c 1.40.2.1 = 1.40.2.2

http://www.samba.org/cgi-bin/cvsweb/samba/source/nmbd/nmbd_processlogon.c?r1=1.40.2.1r2=1.40.2.2
nmbd_sendannounce.c 1.12.4.1 = 1.12.4.2

http://www.samba.org/cgi-bin/cvsweb/samba/source/nmbd/nmbd_sendannounce.c?r1=1.12.4.1r2=1.12.4.2
nmbd_serverlistdb.c 1.13.4.2 = 1.13.4.3

http://www.samba.org/cgi-bin/cvsweb/samba/source/nmbd/nmbd_serverlistdb.c?r1=1.13.4.2r2=1.13.4.3
nmbd_workgroupdb.c  1.13.2.2 = 1.13.2.3

http://www.samba.org/cgi-bin/cvsweb/samba/source/nmbd/nmbd_workgroupdb.c?r1=1.13.2.2r2=1.13.2.3



CVS update: samba/source/rpc_parse

2002-10-30 Thread jra

Date:   Thu Oct 31 00:20:21 2002
Author: jra

Update of /data/cvs/samba/source/rpc_parse
In directory dp.samba.org:/tmp/cvs-serv319/rpc_parse

Modified Files:
  Tag: APPLIANCE_HEAD
parse_misc.c parse_net.c parse_rpc.c parse_samr.c parse_srv.c 
parse_wks.c 
Log Message:
   --
  /  \
 /  REST  \
/IN\
   /   PEACE\
  /  \
  |global_myname |
  |  global_myworkgroup  |
  |  |
  |  30 October  |
  |  |
  | 2002 |
  |  |
  | You will not be |
  |missed   |
  |  |
 *| *  *  *  | *
_)/\\_//(\/(/\)/\//\/\///|_)___

Made explicit when we're asking for a dos string, or
a UNIX string. We're still broken w.r.t. codepage issues,
but now hopefully we have a chance to fix it and we're
no worse than before.

Look for the elements of this code in lib/util.c to be
added to 3.0.x and HEAD soon.

Jeremy.

Attempt to make progress on CR#663. Needs *extensive*
testing.


Revisions:
parse_misc.c1.68.2.11 = 1.68.2.12

http://www.samba.org/cgi-bin/cvsweb/samba/source/rpc_parse/parse_misc.c?r1=1.68.2.11r2=1.68.2.12
parse_net.c 1.42.2.6 = 1.42.2.7

http://www.samba.org/cgi-bin/cvsweb/samba/source/rpc_parse/parse_net.c?r1=1.42.2.6r2=1.42.2.7
parse_rpc.c 1.39.2.3 = 1.39.2.4

http://www.samba.org/cgi-bin/cvsweb/samba/source/rpc_parse/parse_rpc.c?r1=1.39.2.3r2=1.39.2.4
parse_samr.c1.94.2.11 = 1.94.2.12

http://www.samba.org/cgi-bin/cvsweb/samba/source/rpc_parse/parse_samr.c?r1=1.94.2.11r2=1.94.2.12
parse_srv.c 1.26.2.4 = 1.26.2.5

http://www.samba.org/cgi-bin/cvsweb/samba/source/rpc_parse/parse_srv.c?r1=1.26.2.4r2=1.26.2.5
parse_wks.c 1.8.2.1 = 1.8.2.2

http://www.samba.org/cgi-bin/cvsweb/samba/source/rpc_parse/parse_wks.c?r1=1.8.2.1r2=1.8.2.2



CVS update: samba/source/rpc_server

2002-10-30 Thread jra

Date:   Thu Oct 31 00:20:22 2002
Author: jra

Update of /data/cvs/samba/source/rpc_server
In directory dp.samba.org:/tmp/cvs-serv319/rpc_server

Modified Files:
  Tag: APPLIANCE_HEAD
srv_dfs.c srv_dfs_nt.c srv_lsa_nt.c srv_netlog_nt.c 
srv_samr_nt.c srv_spoolss_nt.c srv_srvsvc_nt.c srv_wkssvc_nt.c 
Log Message:
   --
  /  \
 /  REST  \
/IN\
   /   PEACE\
  /  \
  |global_myname |
  |  global_myworkgroup  |
  |  |
  |  30 October  |
  |  |
  | 2002 |
  |  |
  | You will not be |
  |missed   |
  |  |
 *| *  *  *  | *
_)/\\_//(\/(/\)/\//\/\///|_)___

Made explicit when we're asking for a dos string, or
a UNIX string. We're still broken w.r.t. codepage issues,
but now hopefully we have a chance to fix it and we're
no worse than before.

Look for the elements of this code in lib/util.c to be
added to 3.0.x and HEAD soon.

Jeremy.

Attempt to make progress on CR#663. Needs *extensive*
testing.


Revisions:
srv_dfs.c   1.3.2.2 = 1.3.2.3

http://www.samba.org/cgi-bin/cvsweb/samba/source/rpc_server/srv_dfs.c?r1=1.3.2.2r2=1.3.2.3
srv_dfs_nt.c1.14.2.1 = 1.14.2.2

http://www.samba.org/cgi-bin/cvsweb/samba/source/rpc_server/srv_dfs_nt.c?r1=1.14.2.1r2=1.14.2.2
srv_lsa_nt.c1.57.2.2 = 1.57.2.3

http://www.samba.org/cgi-bin/cvsweb/samba/source/rpc_server/srv_lsa_nt.c?r1=1.57.2.2r2=1.57.2.3
srv_netlog_nt.c 1.61.2.1 = 1.61.2.2

http://www.samba.org/cgi-bin/cvsweb/samba/source/rpc_server/srv_netlog_nt.c?r1=1.61.2.1r2=1.61.2.2
srv_samr_nt.c   1.97.2.3 = 1.97.2.4

http://www.samba.org/cgi-bin/cvsweb/samba/source/rpc_server/srv_samr_nt.c?r1=1.97.2.3r2=1.97.2.4
srv_spoolss_nt.c1.95.2.214 = 1.95.2.215

http://www.samba.org/cgi-bin/cvsweb/samba/source/rpc_server/srv_spoolss_nt.c?r1=1.95.2.214r2=1.95.2.215
srv_srvsvc_nt.c 1.76.2.4 = 1.76.2.5

http://www.samba.org/cgi-bin/cvsweb/samba/source/rpc_server/srv_srvsvc_nt.c?r1=1.76.2.4r2=1.76.2.5
srv_wkssvc_nt.c 1.9.2.1 = 1.9.2.2

http://www.samba.org/cgi-bin/cvsweb/samba/source/rpc_server/srv_wkssvc_nt.c?r1=1.9.2.1r2=1.9.2.2



CVS update: samba/source/rpcclient

2002-10-30 Thread jra

Date:   Thu Oct 31 00:20:22 2002
Author: jra

Update of /data/cvs/samba/source/rpcclient
In directory dp.samba.org:/tmp/cvs-serv319/rpcclient

Modified Files:
  Tag: APPLIANCE_HEAD
cmd_netlogon.c rpcclient.c samsync.c 
Log Message:
   --
  /  \
 /  REST  \
/IN\
   /   PEACE\
  /  \
  |global_myname |
  |  global_myworkgroup  |
  |  |
  |  30 October  |
  |  |
  | 2002 |
  |  |
  | You will not be |
  |missed   |
  |  |
 *| *  *  *  | *
_)/\\_//(\/(/\)/\//\/\///|_)___

Made explicit when we're asking for a dos string, or
a UNIX string. We're still broken w.r.t. codepage issues,
but now hopefully we have a chance to fix it and we're
no worse than before.

Look for the elements of this code in lib/util.c to be
added to 3.0.x and HEAD soon.

Jeremy.

Attempt to make progress on CR#663. Needs *extensive*
testing.


Revisions:
cmd_netlogon.c  1.31.2.2 = 1.31.2.3

http://www.samba.org/cgi-bin/cvsweb/samba/source/rpcclient/cmd_netlogon.c?r1=1.31.2.2r2=1.31.2.3
rpcclient.c 1.120.2.5 = 1.120.2.6

http://www.samba.org/cgi-bin/cvsweb/samba/source/rpcclient/rpcclient.c?r1=1.120.2.5r2=1.120.2.6
samsync.c   1.17.2.1 = 1.17.2.2

http://www.samba.org/cgi-bin/cvsweb/samba/source/rpcclient/samsync.c?r1=1.17.2.1r2=1.17.2.2



CVS update: samba/source/smbd

2002-10-30 Thread jra

Date:   Thu Oct 31 00:20:23 2002
Author: jra

Update of /data/cvs/samba/source/smbd
In directory dp.samba.org:/tmp/cvs-serv319/smbd

Modified Files:
  Tag: APPLIANCE_HEAD
lanman.c negprot.c password.c process.c reply.c server.c 
trans2.c uid.c 
Log Message:
   --
  /  \
 /  REST  \
/IN\
   /   PEACE\
  /  \
  |global_myname |
  |  global_myworkgroup  |
  |  |
  |  30 October  |
  |  |
  | 2002 |
  |  |
  | You will not be |
  |missed   |
  |  |
 *| *  *  *  | *
_)/\\_//(\/(/\)/\//\/\///|_)___

Made explicit when we're asking for a dos string, or
a UNIX string. We're still broken w.r.t. codepage issues,
but now hopefully we have a chance to fix it and we're
no worse than before.

Look for the elements of this code in lib/util.c to be
added to 3.0.x and HEAD soon.

Jeremy.

Attempt to make progress on CR#663. Needs *extensive*
testing.


Revisions:
lanman.c1.17.2.25 = 1.17.2.26

http://www.samba.org/cgi-bin/cvsweb/samba/source/smbd/lanman.c?r1=1.17.2.25r2=1.17.2.26
negprot.c   1.16.2.5 = 1.16.2.6

http://www.samba.org/cgi-bin/cvsweb/samba/source/smbd/negprot.c?r1=1.16.2.5r2=1.16.2.6
password.c  1.180.2.53 = 1.180.2.54

http://www.samba.org/cgi-bin/cvsweb/samba/source/smbd/password.c?r1=1.180.2.53r2=1.180.2.54
process.c   1.43.2.23 = 1.43.2.24

http://www.samba.org/cgi-bin/cvsweb/samba/source/smbd/process.c?r1=1.43.2.23r2=1.43.2.24
reply.c 1.237.2.44 = 1.237.2.45

http://www.samba.org/cgi-bin/cvsweb/samba/source/smbd/reply.c?r1=1.237.2.44r2=1.237.2.45
server.c1.304.2.22 = 1.304.2.23

http://www.samba.org/cgi-bin/cvsweb/samba/source/smbd/server.c?r1=1.304.2.22r2=1.304.2.23
trans2.c1.149.2.18 = 1.149.2.19

http://www.samba.org/cgi-bin/cvsweb/samba/source/smbd/trans2.c?r1=1.149.2.18r2=1.149.2.19
uid.c   1.50.2.16 = 1.50.2.17

http://www.samba.org/cgi-bin/cvsweb/samba/source/smbd/uid.c?r1=1.50.2.16r2=1.50.2.17



CVS update: samba/source/smbwrapper

2002-10-30 Thread jra

Date:   Thu Oct 31 00:20:23 2002
Author: jra

Update of /data/cvs/samba/source/smbwrapper
In directory dp.samba.org:/tmp/cvs-serv319/smbwrapper

Modified Files:
  Tag: APPLIANCE_HEAD
smbw.c 
Log Message:
   --
  /  \
 /  REST  \
/IN\
   /   PEACE\
  /  \
  |global_myname |
  |  global_myworkgroup  |
  |  |
  |  30 October  |
  |  |
  | 2002 |
  |  |
  | You will not be |
  |missed   |
  |  |
 *| *  *  *  | *
_)/\\_//(\/(/\)/\//\/\///|_)___

Made explicit when we're asking for a dos string, or
a UNIX string. We're still broken w.r.t. codepage issues,
but now hopefully we have a chance to fix it and we're
no worse than before.

Look for the elements of this code in lib/util.c to be
added to 3.0.x and HEAD soon.

Jeremy.

Attempt to make progress on CR#663. Needs *extensive*
testing.


Revisions:
smbw.c  1.68.2.5 = 1.68.2.6

http://www.samba.org/cgi-bin/cvsweb/samba/source/smbwrapper/smbw.c?r1=1.68.2.5r2=1.68.2.6



CVS update: samba/source/utils

2002-10-30 Thread jra

Date:   Thu Oct 31 00:20:23 2002
Author: jra

Update of /data/cvs/samba/source/utils
In directory dp.samba.org:/tmp/cvs-serv319/utils

Modified Files:
  Tag: APPLIANCE_HEAD
nmblookup.c pdbedit.c rpctorture.c smbcacls.c smbpasswd.c 
Log Message:
   --
  /  \
 /  REST  \
/IN\
   /   PEACE\
  /  \
  |global_myname |
  |  global_myworkgroup  |
  |  |
  |  30 October  |
  |  |
  | 2002 |
  |  |
  | You will not be |
  |missed   |
  |  |
 *| *  *  *  | *
_)/\\_//(\/(/\)/\//\/\///|_)___

Made explicit when we're asking for a dos string, or
a UNIX string. We're still broken w.r.t. codepage issues,
but now hopefully we have a chance to fix it and we're
no worse than before.

Look for the elements of this code in lib/util.c to be
added to 3.0.x and HEAD soon.

Jeremy.

Attempt to make progress on CR#663. Needs *extensive*
testing.


Revisions:
nmblookup.c 1.36.2.5 = 1.36.2.6

http://www.samba.org/cgi-bin/cvsweb/samba/source/utils/nmblookup.c?r1=1.36.2.5r2=1.36.2.6
pdbedit.c   1.49.2.1 = 1.49.2.2

http://www.samba.org/cgi-bin/cvsweb/samba/source/utils/pdbedit.c?r1=1.49.2.1r2=1.49.2.2
rpctorture.c1.13.2.1 = 1.13.2.2

http://www.samba.org/cgi-bin/cvsweb/samba/source/utils/rpctorture.c?r1=1.13.2.1r2=1.13.2.2
smbcacls.c  1.24.2.5 = 1.24.2.6

http://www.samba.org/cgi-bin/cvsweb/samba/source/utils/smbcacls.c?r1=1.24.2.5r2=1.24.2.6
smbpasswd.c 1.92.2.8 = 1.92.2.9

http://www.samba.org/cgi-bin/cvsweb/samba/source/utils/smbpasswd.c?r1=1.92.2.8r2=1.92.2.9



CVS update: samba/source/nsswitch

2002-10-30 Thread jra

Date:   Thu Oct 31 02:33:06 2002
Author: jra

Update of /data/cvs/samba/source/nsswitch
In directory dp.samba.org:/tmp/cvs-serv11544/nsswitch

Modified Files:
  Tag: APPLIANCE_HEAD
wbinfo.c winbindd_misc.c winbindd_pam.c winbindd_rpc.c 
winbindd_util.c 
Log Message:
Fix codepage issues with winbindd.
Jeremy.


Revisions:
wbinfo.c1.2.2.9 = 1.2.2.10

http://www.samba.org/cgi-bin/cvsweb/samba/source/nsswitch/wbinfo.c?r1=1.2.2.9r2=1.2.2.10
winbindd_misc.c 1.10.2.5 = 1.10.2.6

http://www.samba.org/cgi-bin/cvsweb/samba/source/nsswitch/winbindd_misc.c?r1=1.10.2.5r2=1.10.2.6
winbindd_pam.c  1.4.2.8 = 1.4.2.9

http://www.samba.org/cgi-bin/cvsweb/samba/source/nsswitch/winbindd_pam.c?r1=1.4.2.8r2=1.4.2.9
winbindd_rpc.c  1.28.2.14 = 1.28.2.15

http://www.samba.org/cgi-bin/cvsweb/samba/source/nsswitch/winbindd_rpc.c?r1=1.28.2.14r2=1.28.2.15
winbindd_util.c 1.7.2.7 = 1.7.2.8

http://www.samba.org/cgi-bin/cvsweb/samba/source/nsswitch/winbindd_util.c?r1=1.7.2.7r2=1.7.2.8



CVS update: samba/source/libsmb

2002-10-30 Thread jra

Date:   Thu Oct 31 02:37:32 2002
Author: jra

Update of /data/cvs/samba/source/libsmb
In directory dp.samba.org:/tmp/cvs-serv11824/libsmb

Modified Files:
  Tag: APPLIANCE_HEAD
namequery.c 
Log Message:
Ensure correct codepage used.
Jeremy.


Revisions:
namequery.c 1.48.2.27 = 1.48.2.28

http://www.samba.org/cgi-bin/cvsweb/samba/source/libsmb/namequery.c?r1=1.48.2.27r2=1.48.2.28



CVS update: samba/packaging/Mandrake

2002-10-30 Thread jht

Date:   Thu Oct 31 04:35:22 2002
Author: jht

Update of /home/cvs/samba/packaging/Mandrake
In directory dp.samba.org:/tmp/cvs-serv23789

Added Files:
  Tag: SAMBA_3_0
README.mandrake makerpms-cvs.sh samba-2.2.0-buildroot.patch 
samba-2.2.0-gawk.patch samba-2.2.5-gp-reloc-fix.patch 
samba-print-pdf.sh samba-slapd-include.conf 
smbmount-sbin.patch smbw.patch system-auth-winbind.pamd 
winbind.init 
Log Message:
Added the remainder of Buchan Milne's patches.


Revisions:
README.mandrake NONE = 1.2.2.1

http://www.samba.org/cgi-bin/cvsweb/samba/packaging/Mandrake/README.mandrake?rev=1.2.2.1
makerpms-cvs.sh NONE = 1.3.2.1

http://www.samba.org/cgi-bin/cvsweb/samba/packaging/Mandrake/makerpms-cvs.sh?rev=1.3.2.1
samba-2.2.0-buildroot.patch NONE = 1.1.2.1

http://www.samba.org/cgi-bin/cvsweb/samba/packaging/Mandrake/samba-2.2.0-buildroot.patch?rev=1.1.2.1
samba-2.2.0-gawk.patch  NONE = 1.1.2.1

http://www.samba.org/cgi-bin/cvsweb/samba/packaging/Mandrake/samba-2.2.0-gawk.patch?rev=1.1.2.1
samba-2.2.5-gp-reloc-fix.patch  NONE = 1.2.2.1

http://www.samba.org/cgi-bin/cvsweb/samba/packaging/Mandrake/samba-2.2.5-gp-reloc-fix.patch?rev=1.2.2.1
samba-print-pdf.sh  NONE = 1.3.2.1

http://www.samba.org/cgi-bin/cvsweb/samba/packaging/Mandrake/samba-print-pdf.sh?rev=1.3.2.1
samba-slapd-include.confNONE = 1.2.2.1

http://www.samba.org/cgi-bin/cvsweb/samba/packaging/Mandrake/samba-slapd-include.conf?rev=1.2.2.1
smbmount-sbin.patch NONE = 1.1.2.1

http://www.samba.org/cgi-bin/cvsweb/samba/packaging/Mandrake/smbmount-sbin.patch?rev=1.1.2.1
smbw.patch  NONE = 1.1.2.1

http://www.samba.org/cgi-bin/cvsweb/samba/packaging/Mandrake/smbw.patch?rev=1.1.2.1
system-auth-winbind.pamdNONE = 1.2.2.1

http://www.samba.org/cgi-bin/cvsweb/samba/packaging/Mandrake/system-auth-winbind.pamd?rev=1.2.2.1
winbind.initNONE = 1.3.2.1

http://www.samba.org/cgi-bin/cvsweb/samba/packaging/Mandrake/winbind.init?rev=1.3.2.1