diff options
Diffstat (limited to 'bundle-uri.c')
-rw-r--r-- | bundle-uri.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bundle-uri.c b/bundle-uri.c index 36268dda17..6462ab6deb 100644 --- a/bundle-uri.c +++ b/bundle-uri.c @@ -620,7 +620,7 @@ static int config_to_packet_line(const char *key, const char *value, void *data) { struct packet_reader *writer = data; - if (!strncmp(key, "bundle.", 7)) + if (starts_with(key, "bundle.")) packet_write_fmt(writer->fd, "%s=%s", key, value); return 0; |