Check-in Number:
|
1755 | |
Date: |
2002-Jan-31 16:54:53 (local)
2002-Jan-31 15:54:53 (UTC) |
User: | thl |
Branch: | |
Comment: |
bugfix |
Tickets: |
|
Inspections: |
|
Files: |
|
ossp-pkg/lmtp2nntp/example.conf 1.14 -> 1.15
--- 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
|
|
ossp-pkg/lmtp2nntp/lmtp2nntp_config.c 1.34 -> 1.35
--- 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);
}
|
|