diff options
author | bertrand <Bertrand.Guiheneuf@inria.fr> | 1999-04-24 19:23:05 +0800 |
---|---|---|
committer | Bertrand Guiheneuf <bertrand@src.gnome.org> | 1999-04-24 19:23:05 +0800 |
commit | e309ab571904ab1cc4ce258478baf08fe3728945 (patch) | |
tree | 8d1837bb0937964417ea3465234e283810824564 | |
parent | 0a2e9eef732efa8b48e5188b361f523dfe8bb0cc (diff) | |
download | gsoc2013-evolution-e309ab571904ab1cc4ce258478baf08fe3728945.tar gsoc2013-evolution-e309ab571904ab1cc4ce258478baf08fe3728945.tar.gz gsoc2013-evolution-e309ab571904ab1cc4ce258478baf08fe3728945.tar.bz2 gsoc2013-evolution-e309ab571904ab1cc4ce258478baf08fe3728945.tar.lz gsoc2013-evolution-e309ab571904ab1cc4ce258478baf08fe3728945.tar.xz gsoc2013-evolution-e309ab571904ab1cc4ce258478baf08fe3728945.tar.zst gsoc2013-evolution-e309ab571904ab1cc4ce258478baf08fe3728945.zip |
s/new_g_url/g_url_new
1999-04-24 bertrand <Bertrand.Guiheneuf@inria.fr>
* camel/url-util.[ch]: s/new_g_url/g_url_new
svn path=/trunk/; revision=875
-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 } |