From: Volker Lendecke Date: Tue, 17 Jun 2008 12:31:07 +0000 (+0200) Subject: Replace a very unusual variable declaration by a more conventional one X-Git-Tag: samba-3.3.0pre1~887^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9c1f334af3111e93bb8dceb661e1bc5519aa94c6;p=thirdparty%2Fsamba.git Replace a very unusual variable declaration by a more conventional one --- diff --git a/source/nsswitch/libwbclient/wbc_sid.c b/source/nsswitch/libwbclient/wbc_sid.c index deec8e57c97..500be2f3421 100644 --- a/source/nsswitch/libwbclient/wbc_sid.c +++ b/source/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; inum_auths; i++) { - char *tmp2 = + char *tmp2; tmp2 = talloc_asprintf_append(tmp, "-%u", sid->sub_auths[i]); BAIL_ON_PTR_ERROR(tmp2, wbc_status);