From 13afe783505cb99b902ec4b29c46fb14ec8006f0 Mon Sep 17 00:00:00 2001 From: Dan Winship Date: Fri, 16 Mar 2001 21:00:39 +0000 Subject: Fix a bug noticed by kmaraas * e-path.c (e_path_to_physical): Fix a bug noticed by kmaraas svn path=/trunk/; revision=8763 --- e-util/ChangeLog | 4 ++++ e-util/e-path.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/e-util/ChangeLog b/e-util/ChangeLog index 423d09e209..49d5bb89d3 100644 --- a/e-util/ChangeLog +++ b/e-util/ChangeLog @@ -1,3 +1,7 @@ +2001-03-16 Dan Winship + + * e-path.c (e_path_to_physical): Fix a bug noticed by kmaraas + 2001-03-15 Dan Winship * e-html-utils.c (url_extract): Fix a bit: [mailto:foo] shouldn't diff --git a/e-util/e-path.c b/e-util/e-path.c index d1da9abd38..961be21bd6 100644 --- a/e-util/e-path.c +++ b/e-util/e-path.c @@ -51,7 +51,7 @@ e_path_to_physical (const char *prefix, const char *vpath) int ppath_len; int prefix_len; - while (vpath == '/') + while (*vpath == '/') vpath++; if (!prefix) prefix = ""; -- cgit v1.2.3