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-4.0.0alpha6~801^2~1024^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c8ac22111e50528bff450f8f99925904c03a77f1;p=thirdparty%2Fsamba.git Replace a very unusual variable declaration by a more conventional one (This used to be commit 9c1f334af3111e93bb8dceb661e1bc5519aa94c6) --- 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; inum_auths; i++) { - char *tmp2 = + char *tmp2; tmp2 = talloc_asprintf_append(tmp, "-%u", sid->sub_auths[i]); BAIL_ON_PTR_ERROR(tmp2, wbc_status);