]> Kevux Git Server - fll/commit
Bugfix: FSS Extended Write is improperly associated Content with its respective Object. 0.6.9
authorKevin Day <kevin@kevux.org>
Sun, 3 Mar 2024 23:08:45 +0000 (17:08 -0600)
committerKevin Day <kevin@kevux.org>
Sun, 3 Mar 2024 23:12:38 +0000 (17:12 -0600)
commitc64c6a35c0afa920633ef1566b4982a8b0fe7fef
treebc86ac05f63f8efe2e9b44a7ff1dbbc8ee96d98d
parent10866beaeab24ea39c60b86cb984e37963cb9aaa
Bugfix: FSS Extended Write is improperly associated Content with its respective Object.

The following is an example of the bad behavior:
  # fss_extended_write -oc A B -oc C D -oc E F
  A B D
  C F
  E

The expected behavior instead should be:
  # fss_extended_write -oc A B -oc C D -oc E F
  A B
  C D
  E F

The problem is that when "-oc" is used for the next set that object and content parameter have the same parameter index position.
The operator for testing for this should therefore be ">=" rather than ">".
level_3/fss_extended_write/c/fss_extended_write.c