diff options
author | Gerald Carter <jerry@samba.org> | 2003-05-14 04:49:01 +0000 |
---|---|---|
committer | Gerald Carter <jerry@samba.org> | 2003-05-14 04:49:01 +0000 |
commit | b2c19b772738c036a44b344b77b7757781f2e1f0 (patch) | |
tree | 4cbcd152add362da37a22d4c2d0db0452bf0376c /examples | |
parent | 7cb51bb6fcbc6e0896d925a359de7c801a6bb9a1 (diff) | |
download | samba-b2c19b772738c036a44b344b77b7757781f2e1f0.tar.gz samba-b2c19b772738c036a44b344b77b7757781f2e1f0.tar.bz2 samba-b2c19b772738c036a44b344b77b7757781f2e1f0.zip |
s/primaryGroupSID/sambaPrimaryGroupSID/
(This used to be commit 925c60f5e2f5301da90fc26dddc1bad610eea0d0)
Diffstat (limited to 'examples')
-rwxr-xr-x | examples/LDAP/convertSambaAccount | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/LDAP/convertSambaAccount b/examples/LDAP/convertSambaAccount index 9fccf6a8b2..f5b49ff095 100755 --- a/examples/LDAP/convertSambaAccount +++ b/examples/LDAP/convertSambaAccount @@ -87,7 +87,7 @@ while ( !$ldif->eof ) { $entry->delete( 'rid' ); if ( $entry->get_value( "primaryGroupID" ) ) { - $entry->add( 'primaryGroupSID' => $domsid."-".$entry->get_value( "primaryGroupID" ) ); + $entry->add( 'sambaPrimaryGroupSID' => $domsid."-".$entry->get_value( "primaryGroupID" ) ); $entry->delete( 'primaryGroupID' ); } |