Don't hardcode '/' (#502727)
authorAlexander Larsson <alexl@redhat.com>
Mon, 10 Dec 2007 11:19:41 +0000 (11:19 +0000)
committerAlexander Larsson <alexl@src.gnome.org>
Mon, 10 Dec 2007 11:19:41 +0000 (11:19 +0000)
2007-12-10  Alexander Larsson  <alexl@redhat.com>

* gfile.c (g_file_set_display_name):
Don't hardcode '/' (#502727)

svn path=/trunk/; revision=6084

gio/ChangeLog
gio/gfile.c

index fee454d..9da8eaf 100644 (file)
@@ -1,3 +1,8 @@
+2007-12-10  Alexander Larsson  <alexl@redhat.com>
+
+       * gfile.c (g_file_set_display_name):
+       Don't hardcode '/' (#502727)
+
 2007-12-09  Hans Breuer  <hans@breuer.org>
 
        * makefile.msc : follow lib naming convention
index f9a9cbc..27935e4 100644 (file)
@@ -2318,12 +2318,12 @@ g_file_set_display_name (GFile         *file,
   g_return_val_if_fail (G_IS_FILE (file), NULL);
   g_return_val_if_fail (display_name != NULL, NULL);
 
-  if (strchr (display_name, '/') != NULL)
+  if (strchr (display_name, G_DIR_SEPARATOR) != NULL)
     {
       g_set_error (error,
                   G_IO_ERROR,
                   G_IO_ERROR_INVALID_ARGUMENT,
-                  _("File names cannot contain '/'"));
+                  _("File names cannot contain '%c'"), G_DIR_SEPARATOR);
       return NULL;
     }