Remove unnecessary prefixes from ipa-pwd-extop files

This commit is contained in:
Nathaniel McCallum
2013-05-09 14:43:17 -04:00
committed by Martin Kosek
parent 203754691c
commit 1e1bab4edc
5 changed files with 6 additions and 6 deletions

View File

@@ -30,9 +30,9 @@ plugin_LTLIBRARIES = \
$(NULL) $(NULL)
libipa_pwd_extop_la_SOURCES = \ libipa_pwd_extop_la_SOURCES = \
ipapwd_common.c \ common.c \
ipapwd_encoding.c \ encoding.c \
ipapwd_prepost.c \ prepost.c \
ipa_pwd_extop.c \ ipa_pwd_extop.c \
$(KRB5_UTIL_SRCS) \ $(KRB5_UTIL_SRCS) \
$(NULL) $(NULL)

View File

@@ -96,7 +96,7 @@ struct ipapwd_operation {
#define GENERALIZED_TIME_LENGTH 15 #define GENERALIZED_TIME_LENGTH 15
/* from ipapwd_common.c */ /* from common.c */
struct ipapwd_krbcfg { struct ipapwd_krbcfg {
krb5_context krbctx; krb5_context krbctx;
char *realm; char *realm;
@@ -131,7 +131,7 @@ int ipapwd_set_extradata(const char *dn,
void ipapwd_free_slapi_value_array(Slapi_Value ***svals); void ipapwd_free_slapi_value_array(Slapi_Value ***svals);
void free_ipapwd_krbcfg(struct ipapwd_krbcfg **cfg); void free_ipapwd_krbcfg(struct ipapwd_krbcfg **cfg);
/* from ipapwd_encoding.c */ /* from encoding.c */
struct ipapwd_keyset { struct ipapwd_keyset {
uint16_t major_vno; uint16_t major_vno;
uint16_t minor_vno; uint16_t minor_vno;
@@ -148,7 +148,7 @@ int ipapwd_gen_hashes(struct ipapwd_krbcfg *krbcfg,
Slapi_Value ***svals, char **nthash, char **lmhash, Slapi_Value ***svals, char **nthash, char **lmhash,
Slapi_Value ***ntvals, char **errMesg); Slapi_Value ***ntvals, char **errMesg);
/* from ipapwd_prepost.c */ /* from prepost.c */
int ipapwd_ext_init(void); int ipapwd_ext_init(void);
int ipapwd_pre_init(Slapi_PBlock *pb); int ipapwd_pre_init(Slapi_PBlock *pb);
int ipapwd_post_init(Slapi_PBlock *pb); int ipapwd_post_init(Slapi_PBlock *pb);