]> Kevux Git Server - fll/commitdiff
Update: uncomment pipe detection code in return_code and fss_return_code
authorKevin Day <thekevinday@gmail.com>
Wed, 31 Dec 2014 01:57:34 +0000 (19:57 -0600)
committerKevin Day <thekevinday@gmail.com>
Wed, 31 Dec 2014 01:57:34 +0000 (19:57 -0600)
Not sure why this was disabled, perhaps it was not implemented?
At least, enable the variable.

level_3/fss_return_code/c/main.c
level_3/return_code/c/main.c

index a45089190a22c5c68bab388c70b217bef3a73b9f..266212fc3694d737952c47ff422acae6fc3fb43c 100644 (file)
@@ -3,11 +3,9 @@
 int main(const f_array_length argc, const f_string argv[]) {
   fss_return_code_data data = fss_return_code_data_initialize;
 
-  /*
   if (f_pipe_exists()) {
     data.process_pipe = f_true;
   }
-  */
 
   return fss_return_code_main(argc, argv, &data);
 }
index fba08ce283194cbc91581b6a14ab9a2242d39022..2476a69d91872d8bf8d739960c014541af832e4d 100644 (file)
@@ -3,11 +3,9 @@
 int main(const f_array_length argc, const f_string argv[]) {
   return_code_data data = return_code_data_initialize;
 
-  /*
   if (f_pipe_exists()) {
     data.process_pipe = f_true;
   }
-  */
 
   return return_code_main(argc, argv, &data);
 }