Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/libdocument/ev-file-helpers.c
diff options
context:
space:
mode:
authorChristian Persch <chpe@gnome.org>2009-10-25 18:55:18 (GMT)
committer Christian Persch <chpe@gnome.org>2009-10-25 18:55:18 (GMT)
commita55cbf9e9f250fe6ba6ac2bbd6862b5520941c7d (patch)
tree3922e851b9066bf7d6180f1a6cbecbaaa1f4218c /libdocument/ev-file-helpers.c
parent1c3a2e3cd2fdb1ffddb4727549c8e4cc749a0499 (diff)
[libdocument] Remove ev_tmp_dir()
All access to the tmp dir should be through ev_mkstemp[_file]() and ev_mkdtemp() now.
Diffstat (limited to 'libdocument/ev-file-helpers.c')
-rw-r--r--libdocument/ev-file-helpers.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/libdocument/ev-file-helpers.c b/libdocument/ev-file-helpers.c
index 4816db0..3845519 100644
--- a/libdocument/ev-file-helpers.c
+++ b/libdocument/ev-file-helpers.c
@@ -33,7 +33,7 @@
static gchar *tmp_dir = NULL;
-/**
+/*
* ev_dir_ensure_exists:
* @dir: the directory name
* @mode: permissions to use when creating the directory
@@ -43,10 +43,10 @@ static gchar *tmp_dir = NULL;
*
* Returns: %TRUE on success, or %FALSE on error with @error filled in
*/
-gboolean
-ev_dir_ensure_exists (const gchar *dir,
- int mode,
- GError **error)
+static gboolean
+_ev_dir_ensure_exists (const gchar *dir,
+ int mode,
+ GError **error)
{
int errsv;
char *display_name;
@@ -79,7 +79,7 @@ ev_dir_ensure_exists (const gchar *dir,
* Returns: the tmp directory, or %NULL with @error filled in if the
* directory could not be created
*/
-const char *
+static const char *
_ev_tmp_dir (GError **error)
{
@@ -92,7 +92,7 @@ _ev_tmp_dir (GError **error)
g_free (dirname);
}
- if (!ev_dir_ensure_exists (tmp_dir, 0700, error))
+ if (!_ev_dir_ensure_exists (tmp_dir, 0700, error))
return NULL;
return tmp_dir;