diff options
author | Gerald Carter <jerry@samba.org> | 2003-05-14 04:49:13 +0000 |
---|---|---|
committer | Gerald Carter <jerry@samba.org> | 2003-05-14 04:49:13 +0000 |
commit | d6ee6a26523a02834a53f214fd6713f5af591be7 (patch) | |
tree | f49d327eb6f108a533bb494155d21065e7f051c6 /examples | |
parent | 15676b50e1b6d2f24d0207116c133bca4a2cbaf8 (diff) | |
download | samba-d6ee6a26523a02834a53f214fd6713f5af591be7.tar.gz samba-d6ee6a26523a02834a53f214fd6713f5af591be7.tar.xz samba-d6ee6a26523a02834a53f214fd6713f5af591be7.zip |
s/primaryGroupSID/sambaPrimaryGroupSID/
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 9fccf6a8b2e..f5b49ff0957 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' ); } |