+Tue Apr 25 13:21:12 2006 Ben Pfaff <blp@gnu.org>
+
+ * permissions.c (change_permissions): Use SE instead of ME for
+ errors associated with a syntax file command.
+
Thu Mar 2 08:40:33 WST 2006 John Darrington <john@darrington.wattle.id.au>
* Moved files from src directory
}
else
{
- msg(ME, _("Expecting %s or %s."), "WRITEABLE", "READONLY");
+ msg (SE, _("Expecting %s or %s."), "WRITEABLE", "READONLY");
goto error;
}
if ( -1 == stat(file_name, &buf) )
{
const int errnum = errno;
- msg(ME,_("Cannot stat %s: %s"), file_name, strerror(errnum));
+ msg (SE, _("Cannot stat %s: %s"), file_name, strerror(errnum));
return 0;
}
{
const int errnum = errno;
- msg(ME,_("Cannot change mode of %s: %s"), file_name, strerror(errnum));
+ msg (SE, _("Cannot change mode of %s: %s"), file_name, strerror(errnum));
return 0;
}