]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
add const
authorAlan T. DeKok <aland@freeradius.org>
Fri, 9 Oct 2015 13:38:56 +0000 (09:38 -0400)
committerAlan T. DeKok <aland@freeradius.org>
Fri, 9 Oct 2015 13:38:56 +0000 (09:38 -0400)
src/lib/value.c

index 5f2ad75ef784f4874acfafe6cf586cab422d0444..496b77413f9eab96ce89da42640f775074940ede 100644 (file)
@@ -1514,7 +1514,7 @@ char *value_data_aprints(TALLOC_CTX *ctx,
 #ifdef WITH_ASCEND_BINARY
                p = talloc_array(ctx, char, 128);
                if (!p) return NULL;
-               print_abinary(p, 128, (uint8_t *) &data->filter, inlen, 0);
+               print_abinary(p, 128, (uint8_t const *) &data->filter, inlen, 0);
                break;
 #else
                  /* FALL THROUGH */