mirror of
https://github.com/samba-team/samba.git
synced 2025-08-03 04:22:09 +03:00
r26484: Don't rely on removed header.
(This used to be commit 6ca2b35085
)
This commit is contained in:
committed by
Stefan Metzmacher
parent
71e2cafe96
commit
be99991267
@ -128,6 +128,7 @@ struct cli_credentials {
|
||||
|
||||
struct ldb_context;
|
||||
struct loadparm_context;
|
||||
#include "auth/credentials/credentials_krb5.h"
|
||||
#include "auth/credentials/credentials_proto.h"
|
||||
|
||||
#endif /* __CREDENTIALS_H__ */
|
||||
|
@ -20,6 +20,9 @@
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#ifndef __CREDENTIALS_KRB5_H__
|
||||
#define __CREDENTIALS_KRB5_H__
|
||||
|
||||
#include <gssapi/gssapi.h>
|
||||
#include <krb5.h>
|
||||
|
||||
@ -29,4 +32,4 @@ struct gssapi_creds_container {
|
||||
gss_cred_id_t creds;
|
||||
};
|
||||
|
||||
#include "auth/credentials/credentials_krb5_proto.h"
|
||||
#endif /* __CREDENTIALS_KRB5_H__ */
|
||||
|
@ -10,7 +10,7 @@ import os
|
||||
import pwd
|
||||
import grp
|
||||
import time
|
||||
import uuid, sid, misc
|
||||
import uuid, misc
|
||||
from socket import gethostname, gethostbyname
|
||||
import param
|
||||
import registry
|
||||
@ -61,8 +61,8 @@ class ProvisionSettings(object):
|
||||
"SCHEMADN_MOD": "schema_fsmo",
|
||||
"SCHEMADN_MOD2": ",objectguid",
|
||||
"CONFIGDN": self.configdn,
|
||||
"TDB_MODULES_LIST": ","+",".join(self.tdb_modules_list)
|
||||
"MODULES_LIST2": ",".join(self.modules_list2)
|
||||
"TDB_MODULES_LIST": ","+",".join(self.tdb_modules_list),
|
||||
"MODULES_LIST2": ",".join(self.modules_list2),
|
||||
"CONFIGDN_LDB": self.configdn_ldb,
|
||||
"DOMAINDN": self.domaindn,
|
||||
"DOMAINDN_LDB": self.domaindn_ldb,
|
||||
|
Reference in New Issue
Block a user