diff options
Diffstat (limited to 'nsswitch')
-rw-r--r-- | nsswitch/libwbclient/wbc_idmap.c | 4 | ||||
-rw-r--r-- | nsswitch/libwbclient/wbclient.h | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/nsswitch/libwbclient/wbc_idmap.c b/nsswitch/libwbclient/wbc_idmap.c index 5325dbe5ce..04e7d02995 100644 --- a/nsswitch/libwbclient/wbc_idmap.c +++ b/nsswitch/libwbclient/wbc_idmap.c @@ -370,6 +370,10 @@ wbcErr wbcSidsToUnixIds(const struct wbcDomainSid *sids, uint32_t num_sids, id->type = WBC_ID_TYPE_GID; id->id.gid = strtoul(p+1, &q, 10); break; + case 'B': + id->type = WBC_ID_TYPE_BOTH; + id->id.uid = strtoul(p+1, &q, 10); + break; default: id->type = WBC_ID_TYPE_NOT_SPECIFIED; q = strchr(p, '\n'); diff --git a/nsswitch/libwbclient/wbclient.h b/nsswitch/libwbclient/wbclient.h index c5f3b77ed8..809e00a007 100644 --- a/nsswitch/libwbclient/wbclient.h +++ b/nsswitch/libwbclient/wbclient.h @@ -796,7 +796,8 @@ wbcErr wbcQueryGidToSid(gid_t gid, enum wbcIdType { WBC_ID_TYPE_NOT_SPECIFIED, WBC_ID_TYPE_UID, - WBC_ID_TYPE_GID + WBC_ID_TYPE_GID, + WBC_ID_TYPE_BOTH }; union wbcUnixIdContainer { |