diff options
-rw-r--r-- | AUTHORS | 1 | ||||
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | NEWS | 1 | ||||
-rw-r--r-- | src/lib/elm_config.c | 2 |
4 files changed, 7 insertions, 1 deletions
@@ -76,3 +76,4 @@ JaeHyun Jo <jae_hyun_cho@naver.com> | |||
76 | Bora Hwang <bora1.hwang@samsung.com> | 76 | Bora Hwang <bora1.hwang@samsung.com> |
77 | Jiyoung Choi <jychoi7.choi@samsung.com> | 77 | Jiyoung Choi <jychoi7.choi@samsung.com> |
78 | Arvind R <arvino55@gmail.com> | 78 | Arvind R <arvino55@gmail.com> |
79 | Paulo C. A. Cavalcanti Jr <paulo.cavalcanti@intel.com> | ||
@@ -1021,3 +1021,7 @@ | |||
1021 | 2013-02-15 ChunEon Park (Hermet) | 1021 | 2013-02-15 ChunEon Park (Hermet) |
1022 | 1022 | ||
1023 | * support naviframe, button, label orientation mode. | 1023 | * support naviframe, button, label orientation mode. |
1024 | |||
1025 | 2013-02-16 Paulo C. A. Cavalcanti Jr | ||
1026 | |||
1027 | * Fix elm_config to properly check file type. | ||
@@ -148,6 +148,7 @@ Fixes: | |||
148 | * Fix a elm_transit crash issue when user delete all target objects in the effect end callback. | 148 | * Fix a elm_transit crash issue when user delete all target objects in the effect end callback. |
149 | * Fix elc_player pause state to be in sync | 149 | * Fix elc_player pause state to be in sync |
150 | * Fix time string display to handle hours right | 150 | * Fix time string display to handle hours right |
151 | * Fix elm_config to properly check file type. | ||
151 | 152 | ||
152 | Removals: | 153 | Removals: |
153 | 154 | ||
diff --git a/src/lib/elm_config.c b/src/lib/elm_config.c index ff346f461..48f1c53fe 100644 --- a/src/lib/elm_config.c +++ b/src/lib/elm_config.c | |||
@@ -792,7 +792,7 @@ sys: | |||
792 | strlen(_elm_data_dir), "config", | 792 | strlen(_elm_data_dir), "config", |
793 | sizeof("config") - 1); | 793 | sizeof("config") - 1); |
794 | 794 | ||
795 | file_it = eina_file_direct_ls(buf); | 795 | file_it = eina_file_stat_ls(buf); |
796 | if (!file_it) | 796 | if (!file_it) |
797 | goto list_free; | 797 | goto list_free; |
798 | 798 | ||