Fix generated files after adding config option

Signed-off-by: Paul Elliott <paul.elliott@arm.com>
diff --git a/programs/test/query_config.c b/programs/test/query_config.c
index 450e2fb..647279d 100644
--- a/programs/test/query_config.c
+++ b/programs/test/query_config.c
@@ -2723,6 +2723,14 @@
     }
 #endif /* MBEDTLS_ECDH_VARIANT_EVEREST_ENABLED */
 
+#if defined(MBEDTLS_INTERNAL_CCM_NO_ZEROIZE_ON_TAG_FAIL)
+    if( strcmp( "MBEDTLS_INTERNAL_CCM_NO_ZEROIZE_ON_TAG_FAIL", config ) == 0 )
+    {
+        MACRO_EXPANSION_TO_STR( MBEDTLS_INTERNAL_CCM_NO_ZEROIZE_ON_TAG_FAIL );
+        return( 0 );
+    }
+#endif /* MBEDTLS_INTERNAL_CCM_NO_ZEROIZE_ON_TAG_FAIL */
+
     /* If the symbol is not found, return an error */
     return( 1 );
 }