aboutsummaryrefslogtreecommitdiff
path: root/src/diskio.c
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2009-04-20 15:05:56 +0300
committerSergey Poznyakoff <gray@gnu.org.ua>2009-04-20 16:24:02 +0300
commit3a6373d888021388473bd96c000a8fdab8aedaa5 (patch)
treeacff526d947280ced0912c49af1308031e672158 /src/diskio.c
parentdf8c51d2db6f5d16b97ae2f2b62bd625e5a96833 (diff)
downloadwydawca-3a6373d888021388473bd96c000a8fdab8aedaa5.tar.gz
wydawca-3a6373d888021388473bd96c000a8fdab8aedaa5.tar.bz2
Switch to the Grecs submodule.
* gconf: Remove * Makefile.am (ACLOCAL_AMFLAGS): Add -I grecs/am. (SUBDIRS): Replace gconf with grecs (make-ChangeLog): Remove spurious rule. * bootstrap.conf: Init submodules. * configure.ac: Call GRECS_SETUP (AC_CONFIG_FILES): Add grecs/Makefile, grecs/src/Makefile. * src/wydawca.h: Include grecs.h * src/Makefile.am (LDADD,INCLUDES): Refer to grecs. * tests/Makefile.am: Likewise. * src/cmdline.opt, src/config.c, src/diskio.c, src/tcpwrap.c, src/wydawca.c: Use grecs. * README-hacking: Update
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,
}
int
-dir_test_url (mu_url_t url, gconf_locus_t *locus)
+dir_test_url (mu_url_t url, grecs_locus_t *locus)
{
int rc;
const char *dest_dir;
@@ -723,16 +723,16 @@ dir_test_url (mu_url_t url, gconf_locus_t *locus)
rc = mu_url_sget_path (url, &dest_dir);
if (rc)
{
- gconf_error (locus, 0, _("cannot extract directory part from URL: %s"),
+ grecs_error (locus, 0, _("cannot extract directory part from URL: %s"),
mu_strerror (rc));
return rc;
}
if (test_dir (dest_dir, &rc))
{
if (rc)
- gconf_error (locus, rc, _("cannot access %s"), dest_dir);
+ grecs_error (locus, rc, _("cannot access %s"), dest_dir);
else
- gconf_error (locus, 0, _("%s is not a directory"), dest_dir);
+ grecs_error (locus, 0, _("%s is not a directory"), dest_dir);
return 1;
}
return 0;

Return to:

Send suggestions and report system problems to the System administrator.