Fix misleading indentation on if/else statements

This commit is contained in:
Peter Hill 2024-01-15 13:52:51 +00:00
parent b6eb730684
commit ea5a0631c5
No known key found for this signature in database
GPG Key ID: 0C6B9742E72848EE

View File

@ -340,9 +340,9 @@ parsefilterspec(const char* optarg0, List* speclist)
filtopt->fqn[0] = '\0'; /* for strlcat */
if(strcmp(var,"*") != 0 && var[0] != '/') strlcat(filtopt->fqn,"/",vlen+2);
strlcat(filtopt->fqn,var,vlen+2);
if(isnone)
if(isnone) {
filtopt->nofilter = 1;
else {
} else {
filtopt->pfs = *nsf;
if(nsf->nparams != 0) {
/* Duplicate the params */