Displaying 20 results from an estimated 20 matches for "unistr2".
Did you mean:
unistr
2005 Dec 06
1
Compilation problem 3.0.21rc2 Solaris 2.5.1 / Sparc + Sun CC
...from previous errors
cc: acomp failed for /usr/local/tmp/samba-3.0.21rc2/source/dynconfig.c
*** Error code 2
make: Fatal error: Command failed for target `dynconfig.o'
include/rpc_netlogon.h line 949 is the last struct line of
typedef struct net_q_dsr_getdcname {
uint32 ptr_server_unc;
UNISTR2 uni_server_unc;
uint32 ptr_domain_name;
UNISTR2 uni_domain_name;
uint32 ptr_domain_guid;
struct uuid *domain_guid;
uint32 ptr_site_guid;
struct uuid *site_guid;
uint32_t flags;
} NET_Q_DSR_GETDCNAME;
uint32_t is defined in /usr/local/include/inttypes.h, and
/usr/local...
2004 Jun 22
1
Fw: Error C000019B
...pc_parse/parse_prs.c:prs_debug(82)
> 000000 smb_io_clnt_srv
> [2004/06/21 15:27:18, 5] rpc_parse/parse_prs.c:prs_uint32(635)
> 0000 undoc_buffer : 00147f00
> [2004/06/21 15:27:18, 9] rpc_parse/parse_prs.c:prs_debug(82)
> 000004 smb_io_unistr2 unistr2
> [2004/06/21 15:27:18, 5] rpc_parse/parse_prs.c:prs_uint32(635)
> 0004 uni_max_len: 00000009
> [2004/06/21 15:27:18, 5] rpc_parse/parse_prs.c:prs_uint32(635)
> 0008 offset : 00000000
> [2004/06/21 15:27:18, 5] rpc_parse/parse_p...
2003 Feb 21
1
PATCH: downloading drivers from Solaris [was Re: So SAMBA no longer ...]
...rv_spoolss_nt.c 13 Feb 2003 19:40:21 -0000 1.115.2.224
+++ source/rpc_server/srv_spoolss_nt.c 21 Feb 2003 00:15:05 -0000
@@ -7876,12 +7876,22 @@
uint16 enumkeys[ENUMERATED_KEY_SIZE+1];
char* ptr = NULL;
int i;
- char *PrinterKey = "PrinterDriverData";
+ fstring PrinterKey;
+ UNISTR2 uni_keys;
+ int enum_key_len;
DEBUG(4,("_spoolss_enumprinterkey\n"));
unistr2_to_dos(key, &q_u->key, sizeof(key) - 1);
+ ZERO_STRUCTP(PrinterKey);
+ fstrcpy( PrinterKey, "PrinterDriverData" );
+
+ /* add space for 2 terminating NULLs */
+
+ enum_key_len = strlen...
2004 Jun 21
0
Error C000019B
...2004/06/21 15:27:18, 8] rpc_parse/parse_prs.c:prs_debug(82)
000000 smb_io_clnt_srv
[2004/06/21 15:27:18, 5] rpc_parse/parse_prs.c:prs_uint32(635)
0000 undoc_buffer : 00147f00
[2004/06/21 15:27:18, 9] rpc_parse/parse_prs.c:prs_debug(82)
000004 smb_io_unistr2 unistr2
[2004/06/21 15:27:18, 5] rpc_parse/parse_prs.c:prs_uint32(635)
0004 uni_max_len: 00000009
[2004/06/21 15:27:18, 5] rpc_parse/parse_prs.c:prs_uint32(635)
0008 offset : 00000000
[2004/06/21 15:27:18, 5] rpc_parse/parse_prs.c:prs_uint32(635)...
2003 Dec 01
0
No subject
...Mon Jul 9 17:13:22 2001
+++ rpc_server/srv_samr_nt.c Mon Jul 23 15:02:47 2001
@@ -625,9 +625,9 @@
if (num_sam_entries == 0)
return;
- sam = (SAM_ENTRY *)talloc(ctx, sizeof(SAM_ENTRY)*num_sam_entries);
+ sam = (SAM_ENTRY *)talloc_zero(ctx, sizeof(SAM_ENTRY)*num_sam_entries);
- uni_name = (UNISTR2 *)talloc(ctx, sizeof(UNISTR2)*num_sam_entries);
+ uni_name = (UNISTR2 *)talloc_zero(ctx, sizeof(UNISTR2)*num_sam_entries);
if (sam == NULL || uni_name == NULL) {
DEBUG(0, ("NULL pointers in SAMR_R_QUERY_DISPINFO\n"));
@@ -740,9 +740,9 @@
if (num_sam_entries == 0)
return;
- s...
2002 Nov 19
0
winbindd+ win24
...t and last both set
000018 lsa_io_r_query
0018 undoc_buffer: 001559a8
001c info_class: 0005
000020 lsa_io_dom_query
0020 uni_dom_max_len: 0008
0022 uni_dom_str_len: 000a
0024 buffer_dom_name: 0014b878
0028 buffer_dom_sid : 0010de80
00002c smb_io_unistr2 unistr2
002c uni_max_len: 00000005
0030 undoc : 00000000
0034 uni_str_len: 00000004
0038 buffer : N.T.1.4.
000040 smb_io_dom_sid2
0040 num_auths: 00000004
000044 smb_io_dom_sid sid
0044 sid_rev...
2003 Oct 22
4
Clear text authentication impossible???
We have an Exchange 5.5 server in our Samba 3 domain und want to have POP3
access with clear text authentication from clients.
But no kind of credentials is accepted.
It did a level 10 log on the Samba server and found my clear text password
in the log (in nt_chal_resp and lm_chal_resp fields) during authentication.
Is it possible that Samba can't handle the clear-text pass-through from
2001 Apr 11
6
Changing Domains from NT4 / AD 2000
Hello all.
AIX 4.3.3 / Samba 2.0.6 / Production NT4.0 domain
Security = DOMAIN
encrypt passwords = yes
update encrypted = yes
Action: Moving from NT4.0 domain called nt40 to AD 2000 Domain called ad-domain
Problem: Users that have been migrated to ad-domain cannot authenticate to AIX SAMBA shares . . . the AIX SAMBA server is still part of the nt40 domain.
Explanation: I can however, map /
2006 Jan 18
1
Problem in rpc_api_pipe related to the \spoolss pipe
...returned 168 bytes.
000000 lsa_io_r_query
0000 undoc_buffer: 22000000
0004 info_class: 0005
000008 lsa_io_dom_query
0008 uni_dom_max_len: 0012
000a uni_dom_str_len: 0014
000c buffer_dom_name: 00000001
0010 buffer_dom_sid : 00000001
000014 smb_io_unistr2 unistr2
0014 uni_max_len: 0000000a
0018 offset : 00000000
001c uni_str_len: 00000009
0020 buffer :
000034 smb_io_dom_sid2
0034 num_auths: 00000004
000038 smb_io_dom_sid sid
0038 sid_rev_num: 01...
2006 Sep 01
0
[Fwd: Re: Authentication fails (sometimes)]
....c:prs_debug(84)
> 000000 smb_io_clnt_srv
>[2006/08/27 20:03:03, 5, pid=18112] rpc_parse/parse_prs.c:prs_uint32(704)
> 0000 undoc_buffer : 000aaf30
>[2006/08/27 20:03:03, 9, pid=18112] rpc_parse/parse_prs.c:prs_debug(84)
> 000004 smb_io_unistr2 unistr2
>[2006/08/27 20:03:03, 5, pid=18112] rpc_parse/parse_prs.c:prs_uint32(704)
> 0004 uni_max_len: 0000000b
>[2006/08/27 20:03:03, 5, pid=18112] rpc_parse/parse_prs.c:prs_uint32(704)
> 0008 offset : 00000000
>[2006/08/27 20:03:03, 5,...
2006 Aug 30
1
Authentication fails (sometimes)
...rpc_parse/parse_prs.c:prs_debug(84)
000000 smb_io_clnt_srv
[2006/08/27 20:03:03, 5, pid=18112] rpc_parse/parse_prs.c:prs_uint32(704)
0000 undoc_buffer : 000aaf30
[2006/08/27 20:03:03, 9, pid=18112] rpc_parse/parse_prs.c:prs_debug(84)
000004 smb_io_unistr2 unistr2
[2006/08/27 20:03:03, 5, pid=18112] rpc_parse/parse_prs.c:prs_uint32(704)
0004 uni_max_len: 0000000b
[2006/08/27 20:03:03, 5, pid=18112] rpc_parse/parse_prs.c:prs_uint32(704)
0008 offset : 00000000
[2006/08/27 20:03:03, 5, pid=18112] rpc_parse...
2003 May 22
0
net rpc samdump and vampire
...chal(547)
init_q_req_chal: 547
[2003/05/22 12:19:39, 5] rpc_parse/parse_prs.c:prs_debug(81)
000000 net_io_q_req_chal
[2003/05/22 12:19:39, 5] rpc_parse/parse_prs.c:prs_uint32(634)
0000 undoc_buffer: 00000001
[2003/05/22 12:19:39, 6] rpc_parse/parse_prs.c:prs_debug(81)
000004 smb_io_unistr2
[2003/05/22 12:19:39, 5] rpc_parse/parse_prs.c:prs_uint32(634)
0004 uni_max_len: 0000000b
[2003/05/22 12:19:39, 5] rpc_parse/parse_prs.c:prs_uint32(634)
0008 undoc : 00000000
[2003/05/22 12:19:39, 5] rpc_parse/parse_prs.c:prs_uint32(634)
000c uni_str_len: 0000000...
2008 Apr 23
0
winbindd hangs up while retreiving users
...0010 netbios_ptr: 001557b8
0014 dnsname_ptr: 0cbcdd08
0018 forestname_ptr: 0cbe0d38
00001c smb_io_uuid domain_guid
001c data : eb482139
0020 data : 06ef
0022 data : 4ece
0024 data : b2 a6
0026 data : 69 7b d4 30 87 9e
00002c smb_io_unistr2 netbios_domain
002c uni_max_len: 00000005
0030 offset : 00000000
0034 uni_str_len: 00000005
0038 buffer : D.E.P.2...
000044 smb_io_unistr2 dns_domain
0044 uni_max_len: 00000012
0048 offset : 00000000
004c uni_str_len: 00000012...
2004 Sep 29
0
rpcclient adddriver error
..._\PIPE\lsarpc_7.5.prs
000018 lsa_io_r_query
0018 undoc_buffer: 22000000
001c info_class: 0005
000020 lsa_io_dom_query
0020 uni_dom_max_len: 000a
0022 uni_dom_str_len: 000c
0024 buffer_dom_name: 00000001
0028 buffer_dom_sid : 00000001
00002c smb_io_unistr2 unistr2
002c uni_max_len: 00000006
0030 offset : 00000000
0034 uni_str_len: 00000005
0038 buffer : L.I.N.U.X.
000044 smb_io_dom_sid2
0044 num_auths: 00000004
000048 smb_io_dom_sid sid
0048 sid_re...
2003 Jul 09
3
Samba/LDAP XP Authentication Weirdness
Samba 2.2.8a, RH7.3
I have successfully connected machines running XP to the samba controlled
domain.
There are 3 XP machines, each with only one user designated as a power user
(ie domain\username power user). Each can log into any of the three
machines without a problem.
Now I am trying to log a different person into any of these machines and I
get the message "System Could Not Log
2001 Dec 13
0
smpassswd unable to join domain.
...rst and last both set
000018 lsa_io_r_query
0018 undoc_buffer: 00169050
001c info_class: 0005
000020 lsa_io_dom_query
0020 uni_dom_max_len: 0006
0022 uni_dom_str_len: 0008
0024 buffer_dom_name: 00174178
0028 buffer_dom_sid : 01ca8bf0
00002c smb_io_unistr2 unistr2
002c uni_max_len: 00000004
0030 undoc : 00000000
0034 uni_str_len: 00000003
0038 buffer : C.C.H.
000040 smb_io_dom_sid2
0040 num_auths: 00000004
000044 smb_io_dom_sid sid
0044 sid_rev_nu...
2007 Jun 05
0
net rpc vampire problems
.../05/30 11:13:15, 5] rpc_parse/parse_prs.c:prs_uint32(704)
000c buffer_dom_name: 00156ce0
[2007/05/30 11:13:15, 5] rpc_parse/parse_prs.c:prs_uint32(704)
0010 buffer_dom_sid : 0022b7c0
[2007/05/30 11:13:15, 8] rpc_parse/parse_prs.c:prs_debug(84)
000014 smb_io_unistr2 unistr2
[2007/05/30 11:13:15, 5] rpc_parse/parse_prs.c:prs_uint32(704)
0014 uni_max_len: 00000005
[2007/05/30 11:13:15, 5] rpc_parse/parse_prs.c:prs_uint32(704)
0018 offset : 00000000
[2007/05/30 11:13:15, 5] rpc_parse/parse_prs.c:prs_uint32(704)...
2002 Oct 23
3
cupsaddsmb rpcclient error
...utes: 00000018
0058 priority: 00000001
005c default_priority: 00000001
0060 starttime: 00000000
0064 untiltime: 00000000
0068 status: 00000000
006c cjobs: 00000000
0070 averageppm: 00000000
000074 smb_io_unistr2 servername
0074 uni_max_len: 0000000c
0078 undoc : 00000000
007c uni_str_len: 0000000c
0080 buffer : \.\.l.o.c.a.l.h.o.s.t...
000098 smb_io_unistr2 printername
0098 uni_max_len: 00000016...
1999 Sep 23
1
rpcclient problem
i can use the smbclient -L just fine to get a list of shares off my NT4 (Alpha processor) server. My problem lies with rpcclient. It lets me login but then samtest gives the following error:
smb: \> samtest
samtest
SAM Encryption Test
SAMR_R_UNKNOWN_38: Unknown NT error
smb: \>
all i need to be able to do is change the nt password, but the ntpass command gives the same error.
any ideas
2003 Jul 31
4
winbind on Solaris 2.5.1 not working.
Ok folks,
Here is the deal. I have posted to the news groups several times and gotten
not a single thing. I have been trying since march to get 2.2.8a working on
sol2.5.1 with winbind to do the authentication but it has failed miserably.
Winbindd starts but fails to create the /tmp/.winbindd/pipe file and bombs
like a daisycutter. But if I run winbindd like this " truss -aefo /tmp/file