diff options
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | camel/url-util.c | 2 | ||||
-rw-r--r-- | camel/url-util.h | 2 |
3 files changed, 4 insertions, 2 deletions
@@ -1,4 +1,6 @@ 1999-04-24 bertrand <Bertrand.Guiheneuf@inria.fr> + + * camel/url-util.[ch]: s/new_g_url/g_url_new * camel/url-util.c (new_g_url): URL rewritten completely. Error handling not diff --git a/camel/url-util.c b/camel/url-util.c index 45b5c0691d..089254bc9c 100644 --- a/camel/url-util.c +++ b/camel/url-util.c @@ -71,7 +71,7 @@ static gboolean find_path(GString *url, GString **item, guint *position, gboolea * * Return value: a Gurl structure containng the URL items. **/ -Gurl *new_g_url(GString* url_string) +Gurl *g_url_new(GString* url_string) { Gurl *g_url; diff --git a/camel/url-util.h b/camel/url-util.h index fbacbe6da6..74dab30b14 100644 --- a/camel/url-util.h +++ b/camel/url-util.h @@ -40,7 +40,7 @@ typedef struct { GString *path; } Gurl; -Gurl *new_g_url(GString* url_string); +Gurl *g_url_new(GString* url_string); #ifdef __cplusplus } |