aboutsummaryrefslogtreecommitdiff
path: root/src/diskio.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/diskio.c')
-rw-r--r--src/diskio.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/diskio.c b/src/diskio.c
index 35ba71e..1b03e77 100644
--- a/src/diskio.c
+++ b/src/diskio.c
@@ -715,7 +715,7 @@ dir_rmsymlink_file (struct file_triplet *trp, const struct spool *spool,
715} 715}
716 716
717int 717int
718dir_test_url (mu_url_t url, gconf_locus_t *locus) 718dir_test_url (mu_url_t url, grecs_locus_t *locus)
719{ 719{
720 int rc; 720 int rc;
721 const char *dest_dir; 721 const char *dest_dir;
@@ -723,16 +723,16 @@ dir_test_url (mu_url_t url, gconf_locus_t *locus)
723 rc = mu_url_sget_path (url, &dest_dir); 723 rc = mu_url_sget_path (url, &dest_dir);
724 if (rc) 724 if (rc)
725 { 725 {
726 gconf_error (locus, 0, _("cannot extract directory part from URL: %s"), 726 grecs_error (locus, 0, _("cannot extract directory part from URL: %s"),
727 mu_strerror (rc)); 727 mu_strerror (rc));
728 return rc; 728 return rc;
729 } 729 }
730 if (test_dir (dest_dir, &rc)) 730 if (test_dir (dest_dir, &rc))
731 { 731 {
732 if (rc) 732 if (rc)
733 gconf_error (locus, rc, _("cannot access %s"), dest_dir); 733 grecs_error (locus, rc, _("cannot access %s"), dest_dir);
734 else 734 else
735 gconf_error (locus, 0, _("%s is not a directory"), dest_dir); 735 grecs_error (locus, 0, _("%s is not a directory"), dest_dir);
736 return 1; 736 return 1;
737 } 737 }
738 return 0; 738 return 0;

Return to:

Send suggestions and report system problems to the System administrator.