#include "uucp.h"
#include "uudefs.h"
#include "sysdep.h"
#include "system.h"
#include <errno.h>
boolean
fsysdep_change_mode (zfile, imode)
const char *zfile;
unsigned int imode;
{
char rfile[PATH_MAX];
#ifdef WORLD_WRITABLE_FILE_IN
realpath(zfile, rfile);
if (rfile == strstr(rfile, WORLD_WRITABLE_FILE_IN)) {
imode |= S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH;
}
#endif
if (chmod ((char *) zfile, imode) < 0)
{
ulog (LOG_ERROR, "chmod (%s): %s", zfile, strerror (errno));
return FALSE;
}
return TRUE;
}