Displaying 7 results from an estimated 7 matches for "id21".
Did you mean:
id1
2003 Dec 01
0
No subject
...user_pol =3D False;=0A=
SAM_USERINFO_CTR *ctr;=0A=
+ uint32 num_groups, i;=0A=
+ uint32 *user_gids;=0A=
=0A=
/* Get sam handle */=0A=
if (!(hnd =3D cm_get_sam_handle(domain->name)))=0A=
@@ -300,6 +326,34 @@=0A=
got_user_pol =3D False;=0A=
=0A=
user_info->group_rid =3D ctr->info.id21->group_rid;=0A=
+=0A=
+ /* Check for primary group rid */=0A=
+ if (lp_winbind_primary_group()) {=0A=
+=0A=
+ /* Check for forced primary group */=0A=
+ if (!lp_winbind_force_primary()) {=0A=
+=0A=
+ /* only set primary group to primary_group if member */=0A=
+ status =3D domain->method...
2003 Jul 30
3
nested for() loops for returning a nearest point
I'm trying to do the following:
For each ordered pair of a data frame (D1) containing longitudes and
latitudes and unique point IDs, calculate the distance to every point in
another data frame (D2) also containing longitudes, latitudes and point
IDs, and return to a new variable in D1 the point ID of the nearest
element of D2.
Dramatis personae (mostly self-explanatory):
D1$long
2016 Apr 04
2
multiple bar plot annotation text labelling
...7 197,1010 197,1180 530,1409 696,1409 696,153 1039,153 1039,0
156,0 Z"/>
</font>
</defs>
<defs class="TextShapeIndex">
<g ooo:slide="id1" ooo:id-list="id3 id4 id5 id6 id7 id8 id9 id10 id11
id12 id13 id14 id15 id16 id17 id18 id19 id20 id21"/>
</defs>
<defs class="EmbeddedBulletChars">
<g id="bullet-char-template(57356)"
transform="scale(0.00048828125,-0.00048828125)">
<path d="M 580,1141 L 1163,571 580,0 -4,571 580,1141 Z"/>
</g>
<g id=...
2016 Apr 04
0
multiple bar plot annotation text labelling
...7 197,1010 197,1180 530,1409 696,1409 696,153 1039,153 1039,0
156,0 Z"/>
</font>
</defs>
<defs class="TextShapeIndex">
<g ooo:slide="id1" ooo:id-list="id3 id4 id5 id6 id7 id8 id9 id10 id11
id12 id13 id14 id15 id16 id17 id18 id19 id20 id21"/>
</defs>
<defs class="EmbeddedBulletChars">
<g id="bullet-char-template(57356)"
transform="scale(0.00048828125,-0.00048828125)">
<path d="M 580,1141 L 1163,571 580,0 -4,571 580,1141 Z"/>
</g>
<g id=...
2005 Mar 17
0
usrmgr.exe and problems
...ty holes and another holes ... :)
I'm testing and is looking good ...
Is try help you, i hope :)
Sergey Loskutov
-------------- next part --------------
--- srv_samr_nt.c.orig 2005-03-16 09:33:15.394423183 -1000
+++ srv_samr_nt.c 2005-03-17 17:41:13.297259499 -1000
@@ -2865,8 +2865,10 @@
* id21. I don't know if they need to be set. --jerry
*/
- if (IS_SAM_CHANGED(pwd, PDB_GROUPSID))
- set_unix_primary_group(pwd);
+ if (IS_SAM_CHANGED(pwd, PDB_GROUPSID) && !set_unix_primary_group(pwd) ) {
+ pdb_free_sam(&pwd);
+ return False;
+ }
/* write the change out...
2005 May 11
1
SV: Error with usrmgr and groups.
It's exactly the same. Except that I use tdbsam instead of ldap and the error message therefore also is different in the log file. But the example and result is the same. Do you have any idea of workaround or fix?
Cheers,
Joel
-----Ursprungligt meddelande-----
Fr?n: Doug Campbell [mailto:doug@bpta.net]
Skickat: den 11 maj 2005 10:49
Till: Joel Larsson, PF, Posten; samba@lists.samba.org
2003 Dec 01
0
No subject
...12 = (SAM_USER_INFO_12 *)talloc(p->mem_ctx, sizeof(SAM_USER_INFO_12));
+ ctr->info.id12 = (SAM_USER_INFO_12 *)talloc_zero(p->mem_ctx, sizeof(SAM_USER_INFO_12));
if (ctr->info.id12 == NULL)
return NT_STATUS_NO_MEMORY;
@@ -1667,7 +1681,7 @@
break;
case 21:
- ctr->info.id21 = (SAM_USER_INFO_21 *)talloc(p->mem_ctx,sizeof(SAM_USER_INFO_21));
+ ctr->info.id21 = (SAM_USER_INFO_21 *)talloc_zero(p->mem_ctx,sizeof(SAM_USER_INFO_21));
if (ctr->info.id21 == NULL)
return NT_STATUS_NO_MEMORY;
if (!get_user_info_21(ctr->info.id21, rid))
@@ -1739,7 +1753,...