93 |
|
std::string dumpFileName = args_info.input_arg; |
94 |
|
std::string sele1; |
95 |
|
std::string sele2; |
96 |
– |
bool userSpecifiedSelect1; |
97 |
– |
bool userSpecifiedSelect2; |
96 |
|
|
97 |
|
// check the first selection argument, or set it to the environment |
98 |
|
// variable, or failing that, set it to "select all" |
118 |
|
if (sele2Env) { |
119 |
|
sele2 = sele2Env; |
120 |
|
} else { |
121 |
< |
sele2 = "select all"; |
121 |
> |
//It seems likely (from previous discussions) that if sele2 is not specified, then the default behavior |
122 |
> |
//should not be 'select all' but rather what is already intended for sele1 |
123 |
> |
//JRM 8/22/12 |
124 |
> |
sele2 = sele1; |
125 |
> |
//sele2 = "select all"; |
126 |
|
} |
127 |
|
} |
128 |
|
|