Index: fp_fs.c =================================================================== --- fp_fs.c (revision 30902) +++ fp_fs.c (revision 30903) @@ -127,7 +127,7 @@ /* Cache old dir, then cd into subdir because stat is given relative file names. */ memset(olddir, 0, sizeof olddir); if (pcb_get_wd(olddir) == NULL) { - pcb_message(PCB_MSG_ERROR, "fp_fs_list(): Could not determine initial working directory\n"); + rnd_message(PCB_MSG_ERROR, "fp_fs_list(): Could not determine initial working directory\n"); return 0; } @@ -143,7 +143,7 @@ /* Determine subdir's abs path */ if (pcb_get_wd(new_subdir) == NULL) { - pcb_message(PCB_MSG_ERROR, "fp_fs_list(): Could not determine new working directory\n"); + rnd_message(PCB_MSG_ERROR, "fp_fs_list(): Could not determine new working directory\n"); if (chdir(olddir)) pcb_chdir_error_message(olddir); return 0;