2
0
mirror of https://github.com/sudo-project/sudo.git synced 2025-08-31 06:15:37 +00:00

Rename error/errorx -> fatal/fatalx and remove the exit value as

it was always 1.
This commit is contained in:
Todd C. Miller
2013-04-18 14:07:59 -04:00
parent 0fe2c3eb99
commit 39acd2fcba
35 changed files with 270 additions and 270 deletions

View File

@@ -526,7 +526,7 @@ log_fatal(int flags, const char *fmt, ...)
/* Exit the plugin. */
sudoers_cleanup();
sudo_debug_exit(__func__, __FILE__, __LINE__, sudo_debug_subsys);
error_longjmp(1);
fatal_longjmp(1);
}
#define MAX_MAILFLAGS 63
@@ -563,7 +563,7 @@ send_mail(const char *fmt, ...)
switch (pid = sudo_debug_fork()) {
case -1:
/* Error. */
error(1, _("unable to fork"));
fatal(_("unable to fork"));
break;
case 0:
/* Child. */
@@ -896,5 +896,5 @@ new_logline(const char *message, int serrno)
debug_return_str(line);
toobig:
errorx(1, _("internal error: insufficient space for log line"));
fatalx(_("internal error: insufficient space for log line"));
}