]> Kevux Git Server - fll/commitdiff
Bugfix: The sources and under parameters can have invalid slashes.
authorKevin Day <Kevin@kevux.org>
Thu, 6 Mar 2025 02:05:03 +0000 (20:05 -0600)
committerKevin Day <Kevin@kevux.org>
Thu, 6 Mar 2025 02:05:03 +0000 (20:05 -0600)
The directory path cleanup function is not being called for these due to an incorrect boolean value.

Rename `cleanups` to `directory` to make this more clear that this is about being a directory more so than it is about cleanups.

Fix out of date parameter type documentation comment.

Remove old todo comment.

level_3/fake/c/main/common.c
level_3/fake/c/main/common/type.h

index 9220705db2d32dee8048a2b17a318a3faf77e095..b322baf143a690ae1cb53b8ecd3e094b638951d2 100644 (file)
@@ -184,7 +184,7 @@ extern "C" {
           fake_default_work_s,
         };
 
-        const bool cleanups[] = {
+        const uint8_t directory[] = {
           F_true,  // fake_parameter_build_e
           F_true,  // fake_parameter_data_e
           F_true,  // fake_parameter_documents_e
@@ -192,8 +192,8 @@ extern "C" {
           F_true,  // fake_parameter_licenses_e
           F_false, // fake_parameter_process_e
           F_false, // fake_parameter_settings_e
-          F_false, // fake_parameter_sources_e
-          F_false, // fake_parameter_under_e
+          F_true,  // fake_parameter_sources_e
+          F_true,  // fake_parameter_under_e
           F_true,  // fake_parameter_work_e
         };
 
@@ -218,8 +218,6 @@ extern "C" {
 
                   main->setting.state.status = f_utf_is_word_dash_plus(parameters->arguments.array[index].string + j, parameters->arguments.array[index].used - j, F_false);
 
-                  // @todo fix this to print an error about the actual invalid character so that it can be investigated.
-
                   if (F_status_is_error(main->setting.state.status)) {
                     if (fake_print_error_fallback(&main->program.error, macro_fake_f(f_utf_is_word_dash_plus)) == F_false) {
                       fll_program_print_error_parameter_process(&main->program.error, f_console_symbol_long_normal_s, names[i]);
@@ -238,7 +236,7 @@ extern "C" {
                 } // for
               }
 
-              if (cleanups[i]) {
+              if (directory[i]) {
                 main->setting.state.status = f_path_directory_cleanup(parameters->arguments.array[index], variable[i]);
 
                 if (F_status_is_error(main->setting.state.status)) {
index 83683419c93e80b5e177025041294c9a4517ae38..55d7f6503aa1ec639f05c79d33f59cd880a49825 100644 (file)
@@ -70,14 +70,16 @@ extern "C" {
  *   - flag:  Flags passed to the main function.
  *   - state: The state data used when processing the FSS data.
  *
- *   - build:    The build directory.
- *   - data:     The data directory.
- *   - fakefile: The fakefile file path.
- *   - process:  The process name.
- *   - settings: The settings file path.
- *   - sources:  The sources directory.
- *   - under:    The under directory.
- *   - work:     The work directory.
+ *   - build:     The build directory.
+ *   - data:      The data directory.
+ *   - documents: The documents directory.
+ *   - fakefile:  The fakefile file path.
+ *   - licenses:  The licenses directory.
+ *   - process:   The process name.
+ *   - settings:  The settings file path.
+ *   - sources:   The sources directory.
+ *   - under:     The under directory.
+ *   - work:      The work directory.
 
  *   - defines: The define data.
  *   - modes:   The mode data.