]> git.marmaro.de Git - mmh/commitdiff
Document the -port switch to inc. Also, fix the -port switch to inc so
authorKen Hornstein <kenh@pobox.com>
Sat, 24 Nov 2012 00:58:34 +0000 (19:58 -0500)
committerKen Hornstein <kenh@pobox.com>
Sat, 24 Nov 2012 00:58:34 +0000 (19:58 -0500)
it actually works.

man/inc.man
uip/inc.c

index 4c471fcb98a13ce0cf63380117aa218e8b6a0d27..5156db875f114da47d6bf779407de823a44a20a3 100644 (file)
@@ -25,6 +25,8 @@ inc \- incorporate new mail
 .IR columns ]
 .RB [ \-host
 .IR hostname ]
+.RB [ \-port
+.IR portname/number ]
 .RB [ \-user
 .IR username ]
 .RB [ \-pack
@@ -198,7 +200,10 @@ will query this POP service host for mail to incorporate.  If
 is set and
 .B \-host
 is specified as well, the commandline switch will override
-the environment variable.
+the environment variable.  The
+.B \-port
+switch specifies the port name or number used to connect to the POP
+server.  If unspecified the default is \*(lqpop3\*(rq.
 .PP
 The default is for
 .B inc
index 72c79b70f9b615d4c410d591f1af4b595b34f0a3..12da6ba15585ea9d988098a4f55c03b82a5b189e 100644 (file)
--- a/uip/inc.c
+++ b/uip/inc.c
@@ -335,7 +335,7 @@ main (int argc, char **argv)
                continue;
 
            case PORTSW:
-               if (!(host = *argp++) || *port == '-')
+               if (!(port = *argp++) || *port == '-')
                    adios (NULL, "missing argument to %s", argp[-2]);
                continue;