Re: Please remove

2002-11-07 Thread Gerald (Jerry) Carter
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Wed, 6 Nov 2002, Sean Gillaspy wrote:

 Thank you.

You can unsubscribe yourself at http://lists.samba.org/




cheers, jerry
 -
 Hewlett-Packard   - http://www.hp.com
 SAMBA Team-- http://www.samba.org
 GnuPG Key  http://www.plainjoe.org/gpg_public.asc
 ISBN 0-672-32269-2SAMS Teach Yourself Samba in 24 Hours 2ed
 I never saved anything for the swim back. Ethan Hawk in Gattaca
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.0 (GNU/Linux)
Comment: For info see http://quantumlab.net/pine_privacy_guard/

iD8DBQE9ypNyIR7qMdg1EfYRAuIlAJ9IodAFvTvrFHtxVdmQyNoShiCDqgCfd9RV
CJ0bd6Ff4BWVu5YITh7oOok=
=nxum
-END PGP SIGNATURE-




net ads join blows

2002-11-07 Thread Jaakko Niemi

Starting program: /usr/bin/net ads join
root password: 
net: /home/liiwi/cvs-foo/openldap-2.1.8/libraries/libldap/getvalues.c:97: 
ldap_get_values_len: Assertion `entry != ((void *)0)' failed.

Program received signal SIGABRT, Aborted.
0x40129c01 in kill () from /lib/libc.so.6
(gdb) bt
#0  0x40129c01 in kill () from /lib/libc.so.6
#1  0x40129a12 in raise () from /lib/libc.so.6
#2  0x4012ac3e in abort () from /lib/libc.so.6
#3  0x40123b11 in __assert_fail () from /lib/libc.so.6
#4  0x400e8699 in ldap_get_values_len () from /usr/lib/libldap.so.2
#5  0x0810b0e1 in ads_pull_sid (ads=0x81c6e20, msg=0x0, field=0x81494b0 objectSid, 
sid=0xb568) at libads/ldap.c:1595
#6  0x0810ad89 in ads_set_machine_sd (ads=0x81c6e20, hostname=0x81ccd00 foo1, 
dn=0x81d1258 cn=foo1,cn=Computers,dc=FOO,dc=COM) at libads/ldap.c:1428
#7  0x0810a3e5 in ads_add_machine_acct (ads=0x81c6e20, hostname=0x81ccd00 foo1, 
org_unit=0x8113ca8 Computers)
at libads/ldap.c:1082
#8  0x0810a9b3 in ads_join_realm (ads=0x81c6e20, hostname=0x81521a0 FOO1, 
org_unit=0x8113ca8 Computers)
at libads/ldap.c:1331
#9  0x0806a898 in net_ads_join (argc=0, argv=0x815fbf4) at utils/net_ads.c:652
#10 0x08068ad2 in net_run_function (argc=1, argv=0x815fbf0, table=0xb810, 
usage_fn=0x8069780 net_ads_usage)
at utils/net.c:98
#11 0x0806b2fe in net_ads (argc=1, argv=0x815fbf0) at utils/net_ads.c:1044
#12 0x08068ad2 in net_run_function (argc=2, argv=0x815fbec, table=0x814c338, 
usage_fn=0x806bd08 net_help) at utils/net.c:98
#13 0x0806972a in main (argc=3, argv=0xbb74) at utils/net.c:563

 I tried following back where msg comes, but ran out of time.

--j



Re: Planning 3.0alpha21 for Friday (10/25)

2002-11-07 Thread Urban Widmark
On Wed, 23 Oct 2002, Gerald (Jerry) Carter wrote:

  Any chance of someone reviewing and possibly adding these changes before
  then? I first posted this on the 19th.
 
 I'll grab them.
 

Did you do anything with it beyond grabbing ... :)
As far as my cvs client can tell this had not made it in yet.

Here it is again, minus the part that wouldn't work for all multibyte
charsets. For 3_0 and HEAD.

/Urban


diff -urN -X exclude samba-3_0.old/source/libsmb/cliconnect.c 
samba-3_0/source/libsmb/cliconnect.c
--- samba-3_0.old/source/libsmb/cliconnect.cThu Oct 17 19:10:24 2002
+++ samba-3_0/source/libsmb/cliconnect.cSat Oct 19 12:13:30 2002
 -124,6 +124,9 
if (cli-capabilities  CAP_UNICODE)
capabilities |= CAP_UNICODE;
 
+   if (cli-capabilities  CAP_LARGE_FILES)
+   capabilities |= CAP_LARGE_FILES;
+
return capabilities;
 }
 
diff -urN -X exclude samba-3_0.old/source/lib/util_unistr.c 
samba-3_0/source/lib/util_unistr.c
--- samba-3_0.old/source/lib/util_unistr.c  Wed Sep 25 17:18:52 2002
+++ samba-3_0/source/lib/util_unistr.c  Sat Oct 19 20:45:34 2002
 -335,6 +335,7 
if (c == *s) return (smb_ucs2_t *)s;
s++;
}
+   if (c == *s) return (smb_ucs2_t *)s;
return NULL;
 }
 




append_log in smbd?

2002-11-07 Thread Kris Van Hees
Could anyone tell me why the append_log variable in smbd can no longer be
controlled by means of a '-a' flaf on the command line?  The CVS HEAD version
is currently always reopening smbd log file with a truncate option, making it
a bit difficult to debug pretty much anything since logs get overwritten all
the time.

Kris



small smbmount

2002-11-07 Thread Arne
I found out the smallest binaries needed to mount a windows-share from a
linux-box is approx. 700kB tall.
For me this is far too big.
Is there no other=smaller way to mount a windows-share? BSD can do it with 
Arne




Re: append_log in smbd?

2002-11-07 Thread Jelmer Vernooij
On Thu, Nov 07, 2002 at 04:25:13PM -0500, Kris Van Hees wrote about 'append_log in 
smbd?':
 Could anyone tell me why the append_log variable in smbd can no longer be
 controlled by means of a '-a' flaf on the command line?  The CVS HEAD version
 is currently always reopening smbd log file with a truncate option, making it
 a bit difficult to debug pretty much anything since logs get overwritten all
 the time.
Whoops, my fault.. Thanks for reporting!

Jelmer
(who notices he has been doing commits too easily lately, I need to be
more careful...)

-- 
Jelmer Vernooij [EMAIL PROTECTED] - http://nl.linux.org/~jelmer/
 22:39:37 up  6:13,  8 users,  load average: 0.42, 0.44, 0.26



smbmount

2002-11-07 Thread Arne
Adding smbfs to the kernel gives a slightly larger kernel,  found out. What
portons of samba is unneeded with such a kernel (2.4.18)?
The kernel docs refer to samba.org to find out, but I don't find it there.

Reason for asking these things is that I need a very small program to mount
a Windows-share from a linux-box.
Thanks,
Arne




Re: append_log in smbd?

2002-11-07 Thread Andrew Bartlett
On Thu, Nov 07, 2002 at 04:25:13PM -0500, Kris Van Hees wrote:
 Could anyone tell me why the append_log variable in smbd can no longer be
 controlled by means of a '-a' flaf on the command line?  The CVS HEAD version
 is currently always reopening smbd log file with a truncate option, making it
 a bit difficult to debug pretty much anything since logs get overwritten all
 the time.

I noticed that.  It looks like a problem with jelmer's popt work.

Andrew Bartlett