Index: edakrill.c =================================================================== --- edakrill.c (revision 30954) +++ edakrill.c (revision 30955) @@ -185,7 +185,7 @@ mode = 0; if (fp_wget_open(url_idx_list, conf_fp_wget.plugins.fp_wget.cache_dir, &f, &fctx, mode) != 0) { - rnd_message(PCB_MSG_ERROR, "edakrill: failed to download the new list\n"); + rnd_message(RND_MSG_ERROR, "edakrill: failed to download the new list\n"); pcb_remove(NULL, last_sum_fn); /* make sure it is downloaded next time */ goto err; } Index: gedasymbols.c =================================================================== --- gedasymbols.c (revision 30954) +++ gedasymbols.c (revision 30955) @@ -106,7 +106,7 @@ mode = 0; if (fp_wget_open(url_idx_list, conf_fp_wget.plugins.fp_wget.cache_dir, &f, &fctx, mode) != 0) { - rnd_message(PCB_MSG_ERROR, "gedasymbols: failed to download the new list\n"); + rnd_message(RND_MSG_ERROR, "gedasymbols: failed to download the new list\n"); pcb_remove(NULL, last_sum_fn); /* make sure it is downloaded next time */ goto err; } Index: wget_common.c =================================================================== --- wget_common.c (revision 30954) +++ wget_common.c (revision 30955) @@ -95,7 +95,7 @@ int res; sprintf(cmd, "%s/%s", cache_path, cdir); res = pcb_wget_disk(url, cmd, update, NULL); -/* pcb_trace("------res=%d\n", res); */ +/* rnd_trace("------res=%d\n", res); */ if ((res != 0) && (res != 768)) { /* some versions of wget will return error on -c if the file doesn't need update; try to guess whether it's really an error */ /* when wget fails, a 0-long file might be left there - remove it so it won't block new downloads */ pcb_remove(NULL, cmd);