aboutsummaryrefslogtreecommitdiffstats
path: root/fetchmail.c
diff options
context:
space:
mode:
Diffstat (limited to 'fetchmail.c')
-rw-r--r--fetchmail.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/fetchmail.c b/fetchmail.c
index 80856024..a64a61c1 100644
--- a/fetchmail.c
+++ b/fetchmail.c
@@ -115,7 +115,14 @@ int main (int argc, char **argv)
if (versioninfo)
{
- printf("This is fetchmail release %s\n", RELEASE_ID);
+ printf("This is fetchmail release %s", RELEASE_ID);
+#ifdef POP2_ENABLE
+ printf("+POP2");
+#endif /* POP2_ENABLE */
+#ifdef RPA_ENABLE
+ printf("+RPA");
+#endif /* RPA_ENABLE */
+ putchar('\n');
/* this is an attempt to help remote debugging */
system("uname -a");