aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2008-03-10 14:19:14 +0000
committerSergey Poznyakoff <gray@gnu.org.ua>2008-03-10 14:19:14 +0000
commit17e7c47031da9da890d716822ac5650f94898361 (patch)
tree97fe4333a06004f7cf69f5aefcc8acdd3969df73
parentc8915c096576643bb5c7ef467ac2eacf93dd5d7e (diff)
downloadmailfromd-17e7c47031da9da890d716822ac5650f94898361.tar.gz
mailfromd-17e7c47031da9da890d716822ac5650f94898361.tar.bz2
src/prog.c (env_throw, env_throw_0, env_throw_bi): Fix signatures.release_4_3_patches
git-svn-id: file:///svnroot/mailfromd/branches/release_4_3_patches@1632 7a8a7f39-df28-0410-adc6-e0d955640f24
-rw-r--r--ChangeLog3
-rw-r--r--src/prog.c6
2 files changed, 6 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 54ca12b7..0b98c98e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -4,6 +4,9 @@
2008-03-10 Sergey Poznyakoff <gray@gnu.org.ua>
+ * src/prog.c (env_throw, env_throw_0, env_throw_bi): Fix
+ signatures.
+
* configure.ac, NEWS: Version 4.4
* src/mailfromd.h (enum mf_status_code): Add a comma and a count
diff --git a/src/prog.c b/src/prog.c
index f39fb1b7..26621102 100644
--- a/src/prog.c
+++ b/src/prog.c
@@ -1869,7 +1869,7 @@ env_vsprintf(eval_environ_t env, const char *biname,
}
void
-env_throw_0(eval_environ_t env, mf_status status, size_t off)
+env_throw_0(eval_environ_t env, mf_exception status, size_t off)
{
prog_counter_t pc = env->catch[status];
if (pc) {
@@ -1891,7 +1891,7 @@ env_throw_0(eval_environ_t env, mf_status status, size_t off)
}
void
-env_throw(eval_environ_t env, mf_status status, const char *fmt, ...)
+env_throw(eval_environ_t env, mf_exception status, const char *fmt, ...)
{
va_list ap;
size_t off;
@@ -1902,7 +1902,7 @@ env_throw(eval_environ_t env, mf_status status, const char *fmt, ...)
}
void
-env_throw_bi(eval_environ_t env, mf_status status, const char *biname,
+env_throw_bi(eval_environ_t env, mf_exception status, const char *biname,
const char *fmt, ...)
{
va_list ap;

Return to:

Send suggestions and report system problems to the System administrator.