aboutsummaryrefslogtreecommitdiff
path: root/src/bi_other.m4
diff options
context:
space:
mode:
Diffstat (limited to 'src/bi_other.m4')
-rw-r--r--src/bi_other.m414
1 files changed, 7 insertions, 7 deletions
diff --git a/src/bi_other.m4 b/src/bi_other.m4
index d9a51db8..68facb02 100644
--- a/src/bi_other.m4
+++ b/src/bi_other.m4
@@ -1,5 +1,5 @@
/* This file is part of mailfromd. -*- c -*-
- Copyright (C) 2006, 2007 Sergey Poznyakoff
+ Copyright (C) 2006, 2007, 2008 Sergey Poznyakoff
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -33,13 +33,13 @@ valid_user_p(eval_environ_t env, const char *name)
break;
case EAGAIN:
- MF_THROW(mf_temp_failure,
+ MF_THROW(mfe_temp_failure,
_("Temporary failure querying for username %s"),
name);
break;
default:
- MF_THROW(mf_failure,
+ MF_THROW(mfe_failure,
_("Failure querying for username %s"),
name);
break;
@@ -66,7 +66,7 @@ MF_DEFUN(interval, NUMBER, STRING str)
const char *endp;
MF_ASSERT(parse_time_interval(str, &t, &endp) == 0,
- mf_invtime,
+ mfe_invtime,
_("Unrecognized time format (near `%s')"), endp);
MF_RETURN(t);
}
@@ -78,7 +78,7 @@ MF_DEFUN(rate, NUMBER, STRING key, NUMBER interval, OPTIONAL, NUMBER mincnt)
long lrate;
MF_ASSERT(get_rate(key, &rate, MF_OPTVAL(mincnt)) == mf_success,
- mf_dbfailure,
+ mfe_dbfailure,
_("Cannot get rate for %s"), key);
lrate = rate * interval;
@@ -90,7 +90,7 @@ MF_DEFUN(debug_level, NUMBER, OPTIONAL, STRING modname)
{
int level;
MF_ASSERT(debug_module_level(MF_OPTVAL(modname, NULL), &level) == 0,
- mf_range,
+ mfe_range,
_("Invalid module name: %s"), modname);
MF_RETURN(level);
}
@@ -104,7 +104,7 @@ MF_DEFUN(debug_spec, STRING, OPTIONAL, STRING modnames)
int rc = debug_spec_string(MF_OPTVAL(modnames, NULL), &buf);
MF_ASSERT(rc == 0,
- mf_failure,
+ mfe_failure,
"%s", mu_strerror(rc));
s = MF_ALLOC_HEAP(off, strlen(buf) + 1);
strcpy(s, buf);

Return to:

Send suggestions and report system problems to the System administrator.