diff options
author | Volker Lendecke <vl@samba.org> | 2008-06-17 14:31:07 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2008-06-17 14:35:44 +0200 |
commit | c8ac22111e50528bff450f8f99925904c03a77f1 (patch) | |
tree | c01cddb5063e08b59841319208ec4cdeecb4fa9a /source3/nsswitch | |
parent | f21058d61ee6f0661f58c998af84419ee642cbf5 (diff) | |
download | samba-c8ac22111e50528bff450f8f99925904c03a77f1.tar.gz |
Replace a very unusual variable declaration by a more conventional one
(This used to be commit 9c1f334af3111e93bb8dceb661e1bc5519aa94c6)
Diffstat (limited to 'source3/nsswitch')
-rw-r--r-- | source3/nsswitch/libwbclient/wbc_sid.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/nsswitch/libwbclient/wbc_sid.c b/source3/nsswitch/libwbclient/wbc_sid.c index deec8e57c97..500be2f3421 100644 --- a/source3/nsswitch/libwbclient/wbc_sid.c +++ b/source3/nsswitch/libwbclient/wbc_sid.c @@ -59,7 +59,7 @@ wbcErr wbcSidToString(const struct wbcDomainSid *sid, BAIL_ON_PTR_ERROR(tmp, wbc_status); for (i=0; i<sid->num_auths; i++) { - char *tmp2 = + char *tmp2; tmp2 = talloc_asprintf_append(tmp, "-%u", sid->sub_auths[i]); BAIL_ON_PTR_ERROR(tmp2, wbc_status); |