Fossil Forum

typos
Login

typos

(1) By Barak A. Pearlmutter (barak_pearlmutter) on 2022-11-16 19:41:11 [source]

In packaging 2.20 for Debian, the tooling noticed some possible spelling errors.

$ lintian --tag-display-limit 0 ../fossil_2.20-1_amd64.deb

W: fossil: old-fsf-address-in-copyright-file
I: fossil: spelling-error-in-binary childs children [usr/bin/fossil]
I: fossil: spelling-error-in-binary descritption description [usr/bin/fossil]
I: fossil: spelling-error-in-binary enbaled enabled [usr/bin/fossil]
I: fossil: spelling-error-in-binary explaination explanation [usr/bin/fossil]
I: fossil: spelling-error-in-binary extention extension [usr/bin/fossil]
I: fossil: spelling-error-in-binary intialization initialization [usr/bin/fossil]
I: fossil: spelling-error-in-binary ment meant [usr/bin/fossil]
I: fossil: spelling-error-in-binary splitted split [usr/bin/fossil]
P: fossil: spelling-error-in-copyright "GNU Public License" "GNU General Public License"

(2) By Richard Hipp (drh) on 2022-11-16 20:08:13 in reply to 1 [link] [source]

The entry:

I: fossil: spelling-error-in-binary ment meant [usr/bin/fossil]

Apparently comes from this line of code:

  }else if( nBuf>4 && 0==memcmp("ment", &aBuf[nBuf-4], 4) ){
                                 ^^^^--- problem here

In other words, that warning is not easily fixable. All of the other harmless warnings have now been addressed. The changes will be in the next release.

(3) By Barak A. Pearlmutter (barak_pearlmutter) on 2022-11-16 20:22:04 in reply to 2 [link] [source]

Yeah, that tool is indeed prone to false positives. There's per-package list of false hits to silence them, so I'll add that particular warning.