]> Kevux Git Server - fll/commitdiff
Cleanup: Fix incorrect comments.
authorKevin Day <thekevinday@gmail.com>
Sat, 10 Dec 2022 21:05:34 +0000 (15:05 -0600)
committerKevin Day <thekevinday@gmail.com>
Sat, 10 Dec 2022 21:05:34 +0000 (15:05 -0600)
level_3/fss_write/c/main/main.c
level_3/fss_write/c/payload/fss_write.h

index 9d2e0e1d848cc4cce2aa9168e4d7539c4bbe54ff..ed9d4ae60227d9f29172de8864e11015765d4ab4 100644 (file)
@@ -89,7 +89,7 @@ int main(const int argc, const f_string_t *argv, const f_string_t *envp) {
           setting->process_normal = &fss_write_process_normal;
           setting->process_set = &fss_write_process_set;
           setting->flag -= setting->flag & fss_write_flag_ignore_e; // Not supported by basic.
-          setting->flag -= setting->flag & fss_write_flag_content_multiple_e; // Not supported by payload.
+          setting->flag -= setting->flag & fss_write_flag_content_multiple_e; // Not supported by basic.
         }
         else if (fl_string_dynamic_compare(argv[index], fss_write_format_code_short_0001_s) == F_equal_to ||
                  fl_string_dynamic_compare(argv[index], fss_write_format_code_long_0001_s) == F_equal_to ||
index 6efc164550ff30c11a6b58788c6b35f453a357e1..7c3170e1a2800ddb13c0ddb3b82911594a81ce7a 100644 (file)
@@ -102,9 +102,6 @@ extern "C" {
  *   The main program settings.
  *   Must be of type (fss_write_setting_t *).
  *
- *   This standard only supports a single Content per Object.
- *   The setting.contents.array[0] must exist (settings.contents.used == 1), or it is treated as if (settings.contents == 0).
- *
  *   This alters setting.status:
  *     F_none on success.
  *     F_interrupt on (exit) signal received.