Index: ossp-pkg/lmtp2nntp/example.conf RCS File: /v/ossp/cvs/ossp-pkg/lmtp2nntp/Attic/example.conf,v rcsdiff -q -kk '-r1.14' '-r1.15' -u '/v/ossp/cvs/ossp-pkg/lmtp2nntp/Attic/example.conf,v' 2>/dev/null --- example.conf 2002/01/31 15:53:43 1.14 +++ example.conf 2002/01/31 15:54:53 1.15 @@ -49,7 +49,7 @@ timeoutnntpconnect 360 #see --timeoutnntpconnect timeoutnntpread 60 #see --timeoutnntpread timeoutnntpwrite 60 #see --timeoutnntpwrite -user gate #see -u aka --user +user nobody #see -u aka --user version #see -v aka --version newsgroup "test" newsgroup "alt.test" #see man page for information about newsgroup Index: ossp-pkg/lmtp2nntp/lmtp2nntp_config.c RCS File: /v/ossp/cvs/ossp-pkg/lmtp2nntp/lmtp2nntp_config.c,v rcsdiff -q -kk '-r1.34' '-r1.35' -u '/v/ossp/cvs/ossp-pkg/lmtp2nntp/lmtp2nntp_config.c,v' 2>/dev/null --- lmtp2nntp_config.c 2002/01/31 15:53:43 1.34 +++ lmtp2nntp_config.c 2002/01/31 15:54:53 1.35 @@ -765,7 +765,7 @@ } } else { - if ((sPasswd = getpwnam(optarg)) == NULL) { + if ((sPasswd = getpwnam(ov->data.s)) == NULL) { log1(ctx, ERROR, "option --user, name (%s) not found", ov->data.s); throw(0,0,0); }