Commit 80f0e95
committed
rpcapd: Fix parameter name validation in the configuration file.
Apparently, one of the changes in commit ac0abe3 lost the negation of
the test condition and made any parameter name that starts with a letter
(which is every parameter name currently implemented in rpcapd) invalid:
$ cat rpcapd.conf
NullAuthPermit = NO
$ ./rpcapd -f rpcapd.conf
rpcapd: error: rpcapd.conf, line 1 doesn't have a valid parameter name
Press CTRL + C to stop the server...
Negate the condition to fix this.1 parent 9442f39 commit 80f0e95
2 files changed
+2
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
69 | 69 | | |
70 | 70 | | |
71 | 71 | | |
| 72 | + | |
72 | 73 | | |
73 | 74 | | |
74 | 75 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
142 | 142 | | |
143 | 143 | | |
144 | 144 | | |
145 | | - | |
| 145 | + | |
146 | 146 | | |
147 | 147 | | |
148 | 148 | | |
| |||
0 commit comments