Displaying 7 results from an estimated 7 matches for "make_nmb_nam".
Did you mean:
make_nmb_name
2003 Jun 11
2
Setting Separate File server from Samba PDC
I'm aim to set up a file server that is separate from my SAMBA PDC. I've
had no problem setting file server up, and joining it to he domain using
smbpasswd.
Can I use winbind with a SAMBA PDC or is it meant only for Windows NT
servers.
When creating shares on this file server, I need to allow permissions to
various groups and or users. How can I do this. Do I need to set up NIS?
Thank
2003 Jul 15
0
samba-3.0.0beta2-1 - network problem???
...=============================
[2003/07/15 11:47:32, 0] lib/util.c:smb_panic(1462)
PANIC: internal error
[2003/07/15 11:47:32, 0] lib/util.c:smb_panic(1469)
BACKTRACE: 11 stack frames:
#0 smbd(smb_panic+0x11c) [0x81b571c]
#1 smbd [0x81a4122]
#2 /lib/tls/libc.so.6 [0x420276f8]
#3 smbd(make_nmb_name+0x52) [0x80f6f32]
#4 smbd(cli_full_connection+0x7e) [0x80d440e]
#5 smbd(change_trust_account_password+0x1ad) [0x80ca95d]
#6 smbd [0x80c5262]
#7 smbd(smbd_process+0x298) [0x80c56a8]
#8 smbd(main+0x4e6) [0x82204a6]
#9 /lib/tls/libc.so.6(__libc_start_main+0xe4) [0x420156a4]
#10 s...
2003 Jul 25
0
samba-3.0.0beta2-1 - lost connection to domain controller
...=============================
[2003/07/15 11:47:32, 0] lib/util.c:smb_panic(1462)
PANIC: internal error
[2003/07/15 11:47:32, 0] lib/util.c:smb_panic(1469)
BACKTRACE: 11 stack frames:
#0 smbd(smb_panic+0x11c) [0x81b571c]
#1 smbd [0x81a4122]
#2 /lib/tls/libc.so.6 [0x420276f8]
#3 smbd(make_nmb_name+0x52) [0x80f6f32]
#4 smbd(cli_full_connection+0x7e) [0x80d440e]
#5 smbd(change_trust_account_password+0x1ad) [0x80ca95d]
#6 smbd [0x80c5262]
#7 smbd(smbd_process+0x298) [0x80c56a8]
#8 smbd(main+0x4e6) [0x82204a6]
#9 /lib/tls/libc.so.6(__libc_start_main+0xe4) [0x420156a4]
#10 s...
2003 Jul 24
3
active connection gets lost in samba version 3.0 beta 3
...=============================
[2003/07/24 19:22:33, 0] lib/util.c:smb_panic(1462)
PANIC: internal error
[2003/07/24 19:22:33, 0] lib/util.c:smb_panic(1469)
BACKTRACE: 11 stack frames:
#0 smbd(smb_panic+0x11c) [0x81b991c]
#1 smbd [0x81a8202]
#2 /lib/tls/libc.so.6 [0x420275c8]
#3 smbd(make_nmb_name+0x52) [0x80f8f32]
#4 smbd(cli_full_connection+0x7e) [0x80d5efe]
#5 smbd(change_trust_account_password+0x1ad) [0x80cc25d]
#6 smbd [0x80c6b62]
#7 smbd(smbd_process+0x183) [0x80c6e93]
#8 smbd(main+0x4ae) [0x821f56e]
#9 /lib/tls/libc.so.6(__libc_start_main+0xe4) [0x42015574]
#10 s...
2000 Jul 31
0
[patch] smbmount fixes for samba-2.0.7, testers wanted!
...n NULL;
}
if (!cli_session_request(c, &calling, &called)) {
- fprintf(stderr, "session request to %s failed\n", called.name);
+ DEBUG(0,("session request to %s failed\n", called.name));
cli_shutdown(c);
if (strcmp(called.name, "*SMBSERVER")) {
make_nmb_name(&called , "*SMBSERVER", 0x20);
@@ -168,7 +162,7 @@
DEBUG(4,(" session request ok\n"));
if (!cli_negprot(c)) {
- fprintf(stderr, "protocol negotiation failed\n");
+ DEBUG(0,("protocol negotiation failed\n"));
cli_shutdown(c);
return NULL;...
2004 Oct 21
0
compile errors samba 3.0.7 vfs
...39;
global/vscan-message.po(.text+0x1eb): undefined reference to
`DEBUGLEVEL_CLASS'
global/vscan-message.po(.text+0x20d): undefined reference to `dbghdr'
global/vscan-message.po(.text+0x22b): undefined reference to `dbgtext'
global/vscan-message.po(.text+0x248): undefined reference to `make_nmb_name'
global/vscan-message.po(.text+0x268): undefined reference to `make_nmb_name'
global/vscan-message.po(.text+0x275): undefined reference to
`cli_initialise'
global/vscan-message.po(.text+0x298): undefined reference to `cli_set_port'
global/vscan-message.po(.text+0x2b0): undefined r...
2003 Dec 01
0
No subject
...tbios names *TWICE*, resulting serious problems -
it cant be resolved.
The problem hides in nmbd/namelist_db.c
struct name_record *add_name_to_subnet (...) {
....
// namerec->name is a netbios name, already recoded (somewhere else)
// to our own representation, in my case, its cp866
make_nmb_name(&namerec->name, name, type);
....
}
// here is what we do later
void make_nmb_name( struct nmb_name *n, const char *name, int type)
{
extern pstring global_scope;
memset( (char *)n, '\0', sizeof(struct nmb_name) );
StrnCpy( n->name, name, 15 );
// here, unix_to_dos call...