[libgsystem] file-utils: Rename a function
- From: Jasper St. Pierre <jstpierre src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [libgsystem] file-utils: Rename a function
- Date: Wed, 9 Oct 2013 20:16:03 +0000 (UTC)
commit 7ed5e94b43e64d410715c3e08d34673611edf186
Author: Jasper St. Pierre <jstpierre mecheye net>
Date: Wed Oct 9 16:14:41 2013 -0400
file-utils: Rename a function
The proper prefix is gsystem_, not gs_
gsystem-file-utils.c | 10 +++++-----
gsystem-file-utils.h | 4 ++--
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,
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]