From: Alan T. DeKok Date: Wed, 28 Sep 2016 15:16:51 +0000 (-0400) Subject: Fix compile without ascend binary. fixes #1761 X-Git-Tag: release_3_0_12~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ddbef2e3d9640f9c745babaefffd07e94957b284;p=thirdparty%2Ffreeradius-server.git Fix compile without ascend binary. fixes #1761 --- diff --git a/src/lib/value.c b/src/lib/value.c index 72beff35fae..ad026e320da 100644 --- a/src/lib/value.c +++ b/src/lib/value.c @@ -586,6 +586,9 @@ ssize_t value_data_from_str(TALLOC_CTX *ctx, value_data_t *dst, return -1; /* raw octets: 0x01020304... */ +#ifndef WITH_ASCEND_BINARY + do_octets: +#endif case PW_TYPE_OCTETS: { uint8_t *p;