summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Larsson <alexl@src.gnome.org>2007-09-13 10:46:11 +0000
committerAlexander Larsson <alexl@src.gnome.org>2007-09-13 10:46:11 +0000
commit5d6b79460989695825516d0e7e4057035a4cc653 (patch)
tree294c39d17eef0d39f1afcb9756466864d2dacc78
parent15bde925f7e4652032fcda980e013b641fc29e7a (diff)
downloadgvfs-5d6b79460989695825516d0e7e4057035a4cc653.tar.gz
Fix typo in function name
Original git commit by Alexander Larsson <alex@greebo.(none)> at 1168615472 +0100 svn path=/trunk/; revision=233
-rw-r--r--gvfs/gfileinfo.c2
-rw-r--r--gvfs/gfileinfo.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/gvfs/gfileinfo.c b/gvfs/gfileinfo.c
index 1754b28f..4a39da57 100644
--- a/gvfs/gfileinfo.c
+++ b/gvfs/gfileinfo.c
@@ -152,7 +152,7 @@ g_file_info_get_symlink_target (GFileInfo *info)
}
GFileAccessRights
-g_file_get_access_rights (GFileInfo *info)
+g_file_info_get_access_rights (GFileInfo *info)
{
return info->priv->access_rights;
}
diff --git a/gvfs/gfileinfo.h b/gvfs/gfileinfo.h
index 5d9a883d..ab5254d9 100644
--- a/gvfs/gfileinfo.h
+++ b/gvfs/gfileinfo.h
@@ -86,7 +86,7 @@ GQuark g_file_info_get_mime_type_quark (GFileInfo *inf
goffset g_file_info_get_size (GFileInfo *info);
time_t g_file_info_get_modification_time (GFileInfo *info);
const char * g_file_info_get_symlink_target (GFileInfo *info);
-GFileAccessRights g_file_get_access_rights (GFileInfo *info);
+GFileAccessRights g_file_info_get_access_rights (GFileInfo *info);
gboolean g_file_info_can_read (GFileInfo *info);
gboolean g_file_info_can_write (GFileInfo *info);
gboolean g_file_info_can_delete (GFileInfo *info);