Skip to content

Commit

Permalink
Bug 730418 - man page extension is incorrect
Browse files Browse the repository at this point in the history
Test in respect to handling extension was tone wit equal less than / greater than sign and should only be less than and greater than. Resulting in the fact that in case of a chosen extension starting with  .0 or .9 an 3 was pre-pended.
  • Loading branch information
albert-github committed May 20, 2014
1 parent 99433b3 commit f25d896
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mangen.cpp
Expand Up @@ -56,7 +56,7 @@ static QCString getExtension()
ext = ext.mid(1);
}
}
if (ext.at(0)<='0' || ext.at(0)>='9')
if (ext.at(0)<'0' || ext.at(0)>'9')
{
ext.prepend("3");
}
Expand Down

0 comments on commit f25d896

Please sign in to comment.