]> Kevux Git Server - fll/commitdiff
Bugfix: The fss_identify_process() should have f_string_empty_s rather than f_string_...
authorKevin Day <kevin@kevux.org>
Sun, 25 Jun 2023 02:32:17 +0000 (21:32 -0500)
committerKevin Day <kevin@kevux.org>
Sun, 25 Jun 2023 02:32:17 +0000 (21:32 -0500)
When the pipe is being used an empty string is expected rather than the minus character.

level_3/fss_identify/c/fss_identify.c

index b560b05c772796e0535f0902ecae073d4820bbd4..e14422954c1bdf7d2068e3e042c73b073b8797b3 100644 (file)
@@ -310,7 +310,7 @@ extern "C" {
       status = fss_identify_load_line(main, file, f_string_empty_s, &buffer, &range);
 
       if (F_status_is_error_not(status)) {
-        status = fss_identify_process(main, &data, f_string_ascii_minus_s, buffer, &range);
+        status = fss_identify_process(main, &data, f_string_empty_s, buffer, &range);
       }
     }