summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2010-09-07 22:54:40 +0300
committerSergey Poznyakoff <gray@gnu.org.ua>2010-09-08 16:11:38 +0300
commitab4d428ed68026a722481de0b8e44cab50224fa2 (patch)
tree6d1b564466cf321e5365d18870cfd48e9a7dd5c5 /examples
parent08dbbe2a422ee12fc9b80f2b7bd5d209b0812272 (diff)
downloadmailutils-ab4d428ed68026a722481de0b8e44cab50224fa2.tar.gz
mailutils-ab4d428ed68026a722481de0b8e44cab50224fa2.tar.bz2
Rename XSCRIPT_ macros to MU_XSCRIPT.
Diffstat (limited to 'examples')
-rw-r--r--examples/pop3client.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/examples/pop3client.c b/examples/pop3client.c
index 4450f2243..c9246381e 100644
--- a/examples/pop3client.c
+++ b/examples/pop3client.c
@@ -519,9 +519,9 @@ static int
string_to_xlev (const char *name, int *pv)
{
if (strcmp (name, "secure") == 0)
- *pv = XSCRIPT_SECURE;
+ *pv = MU_XSCRIPT_SECURE;
else if (strcmp (name, "payload") == 0)
- *pv = XSCRIPT_PAYLOAD;
+ *pv = MU_XSCRIPT_PAYLOAD;
else
return 1;
return 0;
@@ -568,12 +568,12 @@ set_verbose_mask (mu_pop3_t p)
{
if (p)
{
- mu_pop3_trace_mask (p, QRY_VERBOSE_MASK (XSCRIPT_SECURE)
+ mu_pop3_trace_mask (p, QRY_VERBOSE_MASK (MU_XSCRIPT_SECURE)
? MU_POP3_TRACE_SET : MU_POP3_TRACE_CLR,
- XSCRIPT_SECURE);
- mu_pop3_trace_mask (p, QRY_VERBOSE_MASK (XSCRIPT_PAYLOAD)
+ MU_XSCRIPT_SECURE);
+ mu_pop3_trace_mask (p, QRY_VERBOSE_MASK (MU_XSCRIPT_PAYLOAD)
? MU_POP3_TRACE_SET : MU_POP3_TRACE_CLR,
- XSCRIPT_PAYLOAD);
+ MU_XSCRIPT_PAYLOAD);
}
}
@@ -589,12 +589,12 @@ com_verbose (int argc, char **argv)
{
char *delim = " (";
- if (QRY_VERBOSE_MASK (XSCRIPT_SECURE))
+ if (QRY_VERBOSE_MASK (MU_XSCRIPT_SECURE))
{
printf("%ssecure", delim);
delim = ", ";
}
- if (QRY_VERBOSE_MASK (XSCRIPT_PAYLOAD))
+ if (QRY_VERBOSE_MASK (MU_XSCRIPT_PAYLOAD))
printf("%spayload", delim);
printf (")");
}

Return to:

Send suggestions and report system problems to the System administrator.