]> git.ozlabs.org Git - petitboot/blobdiff - lib/url/url.c
lib/url: Include port in pb_url_to_string()
[petitboot] / lib / url / url.c
index 700f87cd936ed0d184cb75312f6cacac0c1739bf..a2ca3a58d4a4273016012b351d228b18154208a3 100644 (file)
@@ -20,7 +20,6 @@
 #include "config.h"
 #endif
 
-#define _GNU_SOURCE
 #include <assert.h>
 #include <string.h>
 
@@ -235,10 +234,17 @@ bool is_url(const char *str)
 char *pb_url_to_string(struct pb_url *url)
 {
        const struct pb_scheme_info *scheme = pb_url_scheme_info(url->scheme);
+       char *str, *port;
        assert(scheme);
 
-       return talloc_asprintf(url, "%s://%s%s", scheme->str,
-                       scheme->has_host ? url->host : "", url->path);
+       port = url->port ? talloc_asprintf(url, ":%s", url->port) : NULL;
+
+       str = talloc_asprintf(url, "%s://%s%s%s", scheme->str,
+                       scheme->has_host ? url->host : "",
+                       port ?: "", url->path);
+
+       talloc_free(port);
+       return str;
 }
 
 static void pb_url_update_full(struct pb_url *url)
@@ -247,7 +253,7 @@ static void pb_url_update_full(struct pb_url *url)
        url->full = pb_url_to_string(url);
 }
 
-static struct pb_url *pb_url_copy(void *ctx, const struct pb_url *url)
+struct pb_url *pb_url_copy(void *ctx, const struct pb_url *url)
 {
        struct pb_url *new_url;