1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-05 20:58:40 +03:00

nsswitch: Fix code spelling

Signed-off-by: Andreas Schneider <asn@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
This commit is contained in:
Andreas Schneider 2023-06-06 13:01:27 +02:00 committed by Andreas Schneider
parent eba5b05a51
commit 51bec2206e
4 changed files with 10 additions and 10 deletions

View File

@ -417,7 +417,7 @@ struct wbcLogonUserInfo {
#define WBC_ACB_SVRTRUST 0x00000100 /* 1 Server trust account */
#define WBC_ACB_PWNOEXP 0x00000200 /* 1 User password does not expire */
#define WBC_ACB_AUTOLOCK 0x00000400 /* 1 Account auto locked */
#define WBC_ACB_ENC_TXT_PWD_ALLOWED 0x00000800 /* 1 Encryped text password is allowed */
#define WBC_ACB_ENC_TXT_PWD_ALLOWED 0x00000800 /* 1 Encrypted text password is allowed */
#define WBC_ACB_SMARTCARD_REQUIRED 0x00001000 /* 1 Smart Card required */
#define WBC_ACB_TRUSTED_FOR_DELEGATION 0x00002000 /* 1 Trusted for Delegation */
#define WBC_ACB_NOT_DELEGATED 0x00004000 /* 1 Not delegated */
@ -1097,7 +1097,7 @@ wbcErr wbcAllocateGid(gid_t *pgid);
*
* @return #wbcErr
*
* @deprecated This method is not impemented any more and should
* @deprecated This method is not implemented any more and should
* be removed in the next major version change.
**/
wbcErr wbcSetUidMapping(uid_t uid, const struct wbcDomainSid *sid);
@ -1110,7 +1110,7 @@ wbcErr wbcSetUidMapping(uid_t uid, const struct wbcDomainSid *sid);
*
* @return #wbcErr
*
* @deprecated This method is not impemented any more and should
* @deprecated This method is not implemented any more and should
* be removed in the next major version change.
**/
wbcErr wbcSetGidMapping(gid_t gid, const struct wbcDomainSid *sid);
@ -1123,7 +1123,7 @@ wbcErr wbcSetGidMapping(gid_t gid, const struct wbcDomainSid *sid);
*
* @return #wbcErr
*
* @deprecated This method is not impemented any more and should
* @deprecated This method is not implemented any more and should
* be removed in the next major version change.
**/
wbcErr wbcRemoveUidMapping(uid_t uid, const struct wbcDomainSid *sid);
@ -1136,7 +1136,7 @@ wbcErr wbcRemoveUidMapping(uid_t uid, const struct wbcDomainSid *sid);
*
* @return #wbcErr
*
* @deprecated This method is not impemented any more and should
* @deprecated This method is not implemented any more and should
* be removed in the next major version change.
**/
wbcErr wbcRemoveGidMapping(gid_t gid, const struct wbcDomainSid *sid);
@ -1148,7 +1148,7 @@ wbcErr wbcRemoveGidMapping(gid_t gid, const struct wbcDomainSid *sid);
*
* @return #wbcErr
*
* @deprecated This method is not impemented any more and should
* @deprecated This method is not implemented any more and should
* be removed in the next major version change.
**/
wbcErr wbcSetUidHwm(uid_t uid_hwm);
@ -1160,7 +1160,7 @@ wbcErr wbcSetUidHwm(uid_t uid_hwm);
*
* @return #wbcErr
*
* @deprecated This method is not impemented any more and should
* @deprecated This method is not implemented any more and should
* be removed in the next major version change.
**/
wbcErr wbcSetGidHwm(gid_t gid_hwm);

View File

@ -385,7 +385,7 @@ static char *wb_aix_getgrset(char *user)
num_gids = response.data.num_entries;
gid_list = (gid_t *)response.extra_data.data;
/* allocate a space large enough to contruct the string */
/* allocate a space large enough to construct the string */
tmpbuf = malloc(num_gids*12);
if (!tmpbuf) {
return NULL;

View File

@ -299,7 +299,7 @@ static NSS_STATUS fill_grent(struct group *result, struct winbindd_gr *gr,
/* this next value is a pointer to a pointer so let's align it */
/* Calculate number of extra bytes needed to align on pointer size boundry */
/* Calculate number of extra bytes needed to align on pointer size boundary */
if ((i = (unsigned long)(*buffer) % sizeof(char*)) != 0)
i = sizeof(char*) - i;

View File

@ -58,7 +58,7 @@
#ifdef HPUX
/*
* HP-UX 11 has no definiton of the nss_groupsbymem structure. This
* HP-UX 11 has no definition of the nss_groupsbymem structure. This
* definition is taken from the nss_ldap project at:
* http://www.padl.com/OSS/nss_ldap.html
*/