]> Kevux Git Server - fll/commit
Bugfix: Incorrect information is printed on certain errors.
authorKevin Day <thekevinday@gmail.com>
Sun, 10 Jul 2022 05:45:05 +0000 (00:45 -0500)
committerKevin Day <thekevinday@gmail.com>
Sun, 10 Jul 2022 05:45:05 +0000 (00:45 -0500)
commitc9c577576608f04bc1e43adb19db771a248dab56
treef6a1992bcda541919a12a4bee9f60dd01706aad9
parent99845b5c64da4e4c319bd0a9faabde6e3c5942bd
Bugfix: Incorrect information is printed on certain errors.

Remove unused line variable.

The f_fss_count_lines() function appends to the calculated length variable.
The number is not being reset.
This results in each iteration adding to the previous:
  Line number 1, count = 1.
  Line number 2, count = 3.
  Line number 3, count = 6.
  etc...

Reset the line number on each pass of the loop to get the correct line number.

An error message is printing "1" when it should be printing "2".

The "%Q" should be used instead of "%s" for the static string.

Replace "parameter" with "Content" to be consistent with other error messages.
level_3/controller/c/entry/private-entry.c
level_3/controller/c/entry/private-entry_print.c