From be4030b6d5cbb19f8deabd7a11d27b2b3df871c9 Mon Sep 17 00:00:00 2001 From: Pierre Avital Date: Thu, 18 Jan 2024 11:48:15 +0100 Subject: [PATCH] oops --- src/api/api.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/api/api.c b/src/api/api.c index e8ad13603..0bd2c016b 100644 --- a/src/api/api.c +++ b/src/api/api.c @@ -771,7 +771,7 @@ z_get_options_t z_get_options_default(void) { .target = z_query_target_default(), .consolidation = z_query_consolidation_default(), .value = {.encoding = z_encoding_default(), .payload = _z_bytes_empty()}, #if Z_FEATURE_ATTACHMENT == 1 - .attachment = z_attachment_null() + // TODO:ATT.attachment = z_attachment_null() #endif }; } @@ -825,7 +825,8 @@ int8_t z_get(z_session_t zs, z_keyexpr_t keyexpr, const char *parameters, z_owne #if Z_FEATURE_ATTACHMENT == 1 , - opt.attachment + z_attachment_null() + // TODO:ATT opt.attachment #endif ); return ret;