Skip to content

Commit 7da6e13

Browse files
jayantkJayant Krishnamurthy
andauthored
Fix option parsing bug (#324)
* fix * add to flags * fix Co-authored-by: Jayant Krishnamurthy <jkrishnamurthy@jumptrading.com>
1 parent 165a9bc commit 7da6e13

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pcapps/pythd.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ int main(int argc, char **argv)
112112
unsigned cu_price = 0;
113113
unsigned max_batch_size = 0;
114114
bool do_wait = true, do_tx = true, do_ws = true, do_debug = false;
115-
while( (opt = ::getopt(argc,argv, "r:s:t:p:i:k:w:c:l:m:b:dnxhz" )) != -1 ) {
115+
while( (opt = ::getopt(argc,argv, "r:s:t:p:i:k:w:c:l:m:b:u:v:dnxhz" )) != -1 ) {
116116
switch(opt) {
117117
case 'r': rpc_host = optarg; break;
118118
case 's': secondary_rpc_host = optarg; break;

0 commit comments

Comments
 (0)