|
From: <he...@us...> - 2013-05-11 07:57:20
|
Revision: 182
http://sourceforge.net/p/pdbsql/code/182
Author: herwinw
Date: 2013-05-11 07:57:17 +0000 (Sat, 11 May 2013)
Log Message:
-----------
Removed the PDB_CAP_STORE_RIDS capability from pdb_mysql
The same fix as in r178, but this time for mysql instead of postgresql
Revision Links:
--------------
http://sourceforge.net/p/pdbsql/code/178
Modified Paths:
--------------
branches/pdbsql_36/pdb_mysql.c
Modified: branches/pdbsql_36/pdb_mysql.c
===================================================================
--- branches/pdbsql_36/pdb_mysql.c 2013-05-11 07:53:35 UTC (rev 181)
+++ branches/pdbsql_36/pdb_mysql.c 2013-05-11 07:57:17 UTC (rev 182)
@@ -408,13 +408,9 @@
}
static uint32_t mysqlsam_capabilities (struct pdb_methods *pdb_methods) {
- return PDB_CAP_STORE_RIDS | PDB_CAP_ADS;
+ return PDB_CAP_ADS;
}
-static bool mysqlsam_new_rid (struct pdb_methods *pdb_methods, uint32 *rid) {
- return false;
-}
-
struct mysqlsam_search_state {
uint32_t acct_flags;
@@ -560,7 +556,6 @@
(*pdb_method)->update_sam_account = mysqlsam_update_sam_account;
(*pdb_method)->delete_sam_account = mysqlsam_delete_sam_account;
(*pdb_method)->capabilities = mysqlsam_capabilities;
- (*pdb_method)->new_rid = mysqlsam_new_rid;
data = talloc(*pdb_method, struct pdb_mysql_data);
(*pdb_method)->private_data = data;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|