diff options
author | Owen Taylor <otaylor@redhat.com> | 2000-07-11 15:31:14 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 2000-07-11 15:31:14 +0000 |
commit | e3f2407b5696c068793db083fc7054cf661836ce (patch) | |
tree | 73e715e0d68ea67db48038f19077b8cfd2b9f4a5 | |
parent | 420062f86db398b4df038f42e01e3db5cd656a7d (diff) | |
download | pango-e3f2407b5696c068793db083fc7054cf661836ce.tar.gz |
Fix bug in home directory substitution.
Mon Jul 10 10:42:42 2000 Owen Taylor <otaylor@redhat.com>
* pango/pango-utils.c (pango_split_file_list): Fix
bug in home directory substitution.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | ChangeLog.pre-1-0 | 5 | ||||
-rw-r--r-- | ChangeLog.pre-1-10 | 5 | ||||
-rw-r--r-- | ChangeLog.pre-1-2 | 5 | ||||
-rw-r--r-- | ChangeLog.pre-1-4 | 5 | ||||
-rw-r--r-- | ChangeLog.pre-1-6 | 5 | ||||
-rw-r--r-- | ChangeLog.pre-1-8 | 5 | ||||
-rw-r--r-- | pango/pango-utils.c | 2 |
8 files changed, 36 insertions, 1 deletions
@@ -1,3 +1,8 @@ +Mon Jul 10 10:42:42 2000 Owen Taylor <otaylor@redhat.com> + + * pango/pango-utils.c (pango_split_file_list): Fix + bug in home directory substitution. + 2000-07-06 Havoc Pennington <hp@redhat.com> * pango/break.c (pango_get_log_attrs): Implement this function, to diff --git a/ChangeLog.pre-1-0 b/ChangeLog.pre-1-0 index 653f08ae..661aa69c 100644 --- a/ChangeLog.pre-1-0 +++ b/ChangeLog.pre-1-0 @@ -1,3 +1,8 @@ +Mon Jul 10 10:42:42 2000 Owen Taylor <otaylor@redhat.com> + + * pango/pango-utils.c (pango_split_file_list): Fix + bug in home directory substitution. + 2000-07-06 Havoc Pennington <hp@redhat.com> * pango/break.c (pango_get_log_attrs): Implement this function, to diff --git a/ChangeLog.pre-1-10 b/ChangeLog.pre-1-10 index 653f08ae..661aa69c 100644 --- a/ChangeLog.pre-1-10 +++ b/ChangeLog.pre-1-10 @@ -1,3 +1,8 @@ +Mon Jul 10 10:42:42 2000 Owen Taylor <otaylor@redhat.com> + + * pango/pango-utils.c (pango_split_file_list): Fix + bug in home directory substitution. + 2000-07-06 Havoc Pennington <hp@redhat.com> * pango/break.c (pango_get_log_attrs): Implement this function, to diff --git a/ChangeLog.pre-1-2 b/ChangeLog.pre-1-2 index 653f08ae..661aa69c 100644 --- a/ChangeLog.pre-1-2 +++ b/ChangeLog.pre-1-2 @@ -1,3 +1,8 @@ +Mon Jul 10 10:42:42 2000 Owen Taylor <otaylor@redhat.com> + + * pango/pango-utils.c (pango_split_file_list): Fix + bug in home directory substitution. + 2000-07-06 Havoc Pennington <hp@redhat.com> * pango/break.c (pango_get_log_attrs): Implement this function, to diff --git a/ChangeLog.pre-1-4 b/ChangeLog.pre-1-4 index 653f08ae..661aa69c 100644 --- a/ChangeLog.pre-1-4 +++ b/ChangeLog.pre-1-4 @@ -1,3 +1,8 @@ +Mon Jul 10 10:42:42 2000 Owen Taylor <otaylor@redhat.com> + + * pango/pango-utils.c (pango_split_file_list): Fix + bug in home directory substitution. + 2000-07-06 Havoc Pennington <hp@redhat.com> * pango/break.c (pango_get_log_attrs): Implement this function, to diff --git a/ChangeLog.pre-1-6 b/ChangeLog.pre-1-6 index 653f08ae..661aa69c 100644 --- a/ChangeLog.pre-1-6 +++ b/ChangeLog.pre-1-6 @@ -1,3 +1,8 @@ +Mon Jul 10 10:42:42 2000 Owen Taylor <otaylor@redhat.com> + + * pango/pango-utils.c (pango_split_file_list): Fix + bug in home directory substitution. + 2000-07-06 Havoc Pennington <hp@redhat.com> * pango/break.c (pango_get_log_attrs): Implement this function, to diff --git a/ChangeLog.pre-1-8 b/ChangeLog.pre-1-8 index 653f08ae..661aa69c 100644 --- a/ChangeLog.pre-1-8 +++ b/ChangeLog.pre-1-8 @@ -1,3 +1,8 @@ +Mon Jul 10 10:42:42 2000 Owen Taylor <otaylor@redhat.com> + + * pango/pango-utils.c (pango_split_file_list): Fix + bug in home directory substitution. + 2000-07-06 Havoc Pennington <hp@redhat.com> * pango/break.c (pango_get_log_attrs): Implement this function, to diff --git a/pango/pango-utils.c b/pango/pango-utils.c index 13ac2c7c..786ae07c 100644 --- a/pango/pango-utils.c +++ b/pango/pango-utils.c @@ -96,7 +96,7 @@ pango_split_file_list (const char *str) if (file[0] == '~' && file[1] == G_DIR_SEPARATOR) { - char *tmp = g_strconcat (g_get_home_dir(), files + 1, NULL); + char *tmp = g_strconcat (g_get_home_dir(), file + 1, NULL); g_free (file); file = tmp; } |