summaryrefslogtreecommitdiff
path: root/pop3d
diff options
context:
space:
mode:
Diffstat (limited to 'pop3d')
-rw-r--r--pop3d/extra.c6
-rw-r--r--pop3d/retr.c2
-rw-r--r--pop3d/top.c2
-rw-r--r--pop3d/user.c2
4 files changed, 6 insertions, 6 deletions
diff --git a/pop3d/extra.c b/pop3d/extra.c
index 461cd529e..380435d3b 100644
--- a/pop3d/extra.c
+++ b/pop3d/extra.c
@@ -344,13 +344,13 @@ set_xscript_level (int xlev)
{
if (pop3d_transcript)
{
- if (xlev != XSCRIPT_NORMAL)
+ if (xlev != MU_XSCRIPT_NORMAL)
{
- mu_log_level_t n = xlev == XSCRIPT_SECURE ?
+ mu_log_level_t n = xlev == MU_XSCRIPT_SECURE ?
MU_DEBUG_TRACE6 : MU_DEBUG_TRACE7;
if (mu_global_debug_level ("pop3") & MU_DEBUG_LEVEL_MASK (n))
- return XSCRIPT_NORMAL;
+ return MU_XSCRIPT_NORMAL;
}
if (mu_stream_ioctl (iostream, MU_IOCTL_LEVEL, &xlev) == 0)
diff --git a/pop3d/retr.c b/pop3d/retr.c
index 103b5ef07..0ffcd249d 100644
--- a/pop3d/retr.c
+++ b/pop3d/retr.c
@@ -47,7 +47,7 @@ pop3d_retr (char *arg)
return ERR_UNKNOWN;
pop3d_outf ("+OK\n");
- xscript_level = set_xscript_level (XSCRIPT_PAYLOAD);
+ xscript_level = set_xscript_level (MU_XSCRIPT_PAYLOAD);
mu_stream_copy (iostream, stream, 0, NULL);
mu_stream_destroy (&stream);
diff --git a/pop3d/top.c b/pop3d/top.c
index cd069c86b..6e295bb4f 100644
--- a/pop3d/top.c
+++ b/pop3d/top.c
@@ -63,7 +63,7 @@ pop3d_top (char *arg)
return ERR_UNKNOWN;
pop3d_outf ("+OK\n");
- xscript_level = set_xscript_level (XSCRIPT_PAYLOAD);
+ xscript_level = set_xscript_level (MU_XSCRIPT_PAYLOAD);
mu_stream_copy (iostream, stream, 0, NULL);
pop3d_outf ("\n");
diff --git a/pop3d/user.c b/pop3d/user.c
index 414763853..e6801b069 100644
--- a/pop3d/user.c
+++ b/pop3d/user.c
@@ -102,7 +102,7 @@ pop3d_user (char *arg)
pop3d_outf ("+OK\n");
pop3d_flush_output ();
- xscript_level = set_xscript_level (XSCRIPT_SECURE);
+ xscript_level = set_xscript_level (MU_XSCRIPT_SECURE);
buf = pop3d_readline (buffer, sizeof (buffer));
pop3d_parse_command (buf, &cmd, &pass);
set_xscript_level (xscript_level);

Return to:

Send suggestions and report system problems to the System administrator.