summaryrefslogtreecommitdiff
path: root/source3/nsswitch
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2008-06-17 14:31:07 +0200
committerVolker Lendecke <vl@samba.org>2008-06-17 14:35:44 +0200
commitc8ac22111e50528bff450f8f99925904c03a77f1 (patch)
treec01cddb5063e08b59841319208ec4cdeecb4fa9a /source3/nsswitch
parentf21058d61ee6f0661f58c998af84419ee642cbf5 (diff)
downloadsamba-c8ac22111e50528bff450f8f99925904c03a77f1.tar.gz
samba-c8ac22111e50528bff450f8f99925904c03a77f1.tar.bz2
samba-c8ac22111e50528bff450f8f99925904c03a77f1.zip
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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/nsswitch/libwbclient/wbc_sid.c b/source3/nsswitch/libwbclient/wbc_sid.c
index deec8e57c9..500be2f342 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);