Renamed util_buil_path to util_build_path.
/* prepare the path to save the donwload */
if (path) {
- file = util_buil_path(path, vb.config.download_dir);
+ file = util_build_path(path, vb.config.download_dir);
} else {
path = webkit_download_get_suggested_filename(download);
if (!path) {
path = "vimb_donwload";
}
- file = util_buil_path(path, vb.config.download_dir);
+ file = util_build_path(path, vb.config.download_dir);
}
/* build the file uri from file path */
*
* Returned path must be freed.
*/
-char *util_buil_path(const char *path, const char *dir)
+char *util_build_path(const char *path, const char *dir)
{
char *fullPath, *p;
gboolean util_string_contains_all_tags(char *src, char **query, unsigned int q);
char *util_str_replace(const char* search, const char* replace, const char* string);
gboolean util_create_tmp_file(const char *content, char **file);
-char *util_buil_path(const char *path, const char *dir);
+char *util_build_path(const char *path, const char *dir);
#endif /* end of include guard: _UTIL_H */