Fix compile without ascend binary. fixes #1761
authorAlan T. DeKok <aland@freeradius.org>
Wed, 28 Sep 2016 15:16:51 +0000 (11:16 -0400)
committerAlan T. DeKok <aland@freeradius.org>
Wed, 28 Sep 2016 15:16:51 +0000 (11:16 -0400)
src/lib/value.c

index 72beff3..ad026e3 100644 (file)
@@ -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;