aboutsummaryrefslogtreecommitdiffstats
path: root/src/writer.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2018-07-05 21:01:12 +0200
committerDavid Robillard <d@drobilla.net>2021-03-08 23:23:05 -0500
commita79d62b9f8c0a75efe56d135a0f08b898969338d (patch)
treeaf6dcd93705db49e613f6d3cde2e0d386f9b0add /src/writer.c
parente0fc63762de7fd92d6b35c20185e14117839a90f (diff)
downloadserd-a79d62b9f8c0a75efe56d135a0f08b898969338d.tar.gz
serd-a79d62b9f8c0a75efe56d135a0f08b898969338d.tar.bz2
serd-a79d62b9f8c0a75efe56d135a0f08b898969338d.zip
Simplify writer style options
Diffstat (limited to 'src/writer.c')
-rw-r--r--src/writer.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/writer.c b/src/writer.c
index 663d8f64..455c720c 100644
--- a/src/writer.c
+++ b/src/writer.c
@@ -581,7 +581,7 @@ write_uri_node(SerdWriter* const writer,
return sink("()", 2, writer) == 2;
}
- if (has_scheme && (writer->flags & SERD_WRITE_CURIED) &&
+ if (has_scheme && !(writer->flags & SERD_WRITE_UNQUALIFIED) &&
serd_env_qualify_in_place(writer->env, node, &prefix, &suffix) &&
is_name(serd_node_string(prefix), serd_node_length(prefix)) &&
is_name(suffix.buf, suffix.len)) {
@@ -602,7 +602,8 @@ write_uri_node(SerdWriter* const writer,
}
write_sep(writer, SEP_URI_BEGIN);
- if ((writer->flags & SERD_WRITE_RESOLVED) && serd_env_base_uri(writer->env)) {
+ if (!(writer->flags & SERD_WRITE_UNRESOLVED) &&
+ serd_env_base_uri(writer->env)) {
const SerdURIView base_uri = serd_env_base_uri_view(writer->env);
SerdURIView uri = serd_parse_uri(node_str);
SerdURIView abs_uri = serd_resolve_uri(uri, base_uri);