Commit f25d896d authored by albert-github's avatar albert-github
Browse files

Bug 730418 - man page extension is incorrect

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.
parent 99433b3d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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");
    }