fritz-tools: fix returning wrong values due to strncmp usage
authorDaniel Kestrel <kestrel1974@t-online.de>
Sun, 25 Jul 2021 18:32:05 +0000 (20:32 +0200)
committerHauke Mehrtens <hauke@hauke-m.de>
Sun, 8 Aug 2021 17:50:46 +0000 (19:50 +0200)
commit12564c5b860f9849c9a2fb7026c2c11150b9a4fc
tree17dcdf2228593a26a3d140c4ffbafc42fdb594fc
parent97d88b1fbd62ad8a24b076d317c7408ee7012757
fritz-tools: fix returning wrong values due to strncmp usage

When having two keys that start with the same characters and the second
key just has one character more nand_tffs_read and tffs_read return the
wrong value for the longer key. This is due to the usage of strncmp in
combination with the length of the shorter key which is usually first in
the list before the longer key and when strncmp matches, the search is
stopped. The problem only occurs when the length of the two keys is
different, not if just the last character is different. The fix is to
use strcmp and as such it will only return the value if the key (name)
and the key to look for (namefilter) have the same value and length. A
sample case returning wrong values is when keys macwlan and macwlan2 are
defined and querying macwlan2 returns the value for macwlan.

Signed-off-by: Daniel Kestrel <kestrel1974@t-online.de>
package/utils/fritz-tools/src/fritz_tffs_nand_read.c
package/utils/fritz-tools/src/fritz_tffs_read.c