summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJasper St. Pierre <jstpierre@mecheye.net>2013-10-09 16:14:41 -0400
committerJasper St. Pierre <jstpierre@mecheye.net>2013-10-09 16:15:46 -0400
commit7ed5e94b43e64d410715c3e08d34673611edf186 (patch)
tree295a51d6030d9197443222ce7b7c39d173474c03
parent3c63e8c0ddedba6610dabf06c34eaa72469e7e2c (diff)
downloadlibgsystem-7ed5e94b43e64d410715c3e08d34673611edf186.tar.gz
file-utils: Rename a function
The proper prefix is gsystem_, not gs_
-rw-r--r--gsystem-file-utils.c10
-rw-r--r--gsystem-file-utils.h4
2 files changed, 7 insertions, 7 deletions
diff --git a/gsystem-file-utils.c b/gsystem-file-utils.c
index 0be3e4d..a07fad7 100644
--- a/gsystem-file-utils.c
+++ b/gsystem-file-utils.c
@@ -394,7 +394,7 @@ get_default_tmp_prefix (void)
}
/**
- * gsystem_fileutil_gen_tmp_name:
+ * gs_fileutil_gen_tmp_name:
* @prefix: (allow-none): String prepended to the result
* @suffix: (allow-none): String suffixed to the result
*
@@ -403,8 +403,8 @@ get_default_tmp_prefix (void)
* name does not exist.
*/
char *
-gsystem_fileutil_gen_tmp_name (const char *prefix,
- const char *suffix)
+gs_fileutil_gen_tmp_name (const char *prefix,
+ const char *suffix)
{
static const char table[] = "ABCEDEFGHIJKLMNOPQRSTUVWXYZabcedefghijklmnopqrstuvwxyz0123456789";
GString *str = g_string_new ("");
@@ -485,7 +485,7 @@ gs_file_open_in_tmpdir_at (int tmpdir_fd,
for (i = 0; i < max_attempts; i++)
{
g_free (tmp_name);
- tmp_name = gsystem_fileutil_gen_tmp_name (NULL, NULL);
+ tmp_name = gs_fileutil_gen_tmp_name (NULL, NULL);
do
fd = openat (tmpdir_fd, tmp_name, O_WRONLY | O_CREAT | O_EXCL, mode);
@@ -585,7 +585,7 @@ linkcopy_internal_attempt (GFile *src,
if (g_cancellable_set_error_if_cancelled (cancellable, error))
goto out;
- tmp_name = gsystem_fileutil_gen_tmp_name (NULL, NULL);
+ tmp_name = gs_fileutil_gen_tmp_name (NULL, NULL);
tmp_dest = g_file_get_child (dest_parent, tmp_name);
res = link (gs_file_get_path_cached (src), gs_file_get_path_cached (tmp_dest));
diff --git a/gsystem-file-utils.h b/gsystem-file-utils.h
index 2ac2617..679f7c7 100644
--- a/gsystem-file-utils.h
+++ b/gsystem-file-utils.h
@@ -67,8 +67,8 @@ gboolean gs_file_sync_data (GFile *file,
GCancellable *cancellable,
GError **error);
-char * gsystem_fileutil_gen_tmp_name (const char *prefix,
- const char *suffix);
+char * gs_fileutil_gen_tmp_name (const char *prefix,
+ const char *suffix);
gboolean gs_file_open_dir_fd (GFile *path,
int *out_fd,