commit cbd105cef32d502b2d191cabe53407ee9bac5913 from: Omar Polo date: Fri Sep 23 06:44:27 2022 UTC don't leak a fd in the parent process i've commented the close during some debugging for don't remember what reason and forgot to turn it back on at import time. commit - 9c83d68af99a3f4c29c2ccb18558bab48e98e97a commit + cbd105cef32d502b2d191cabe53407ee9bac5913 blob - dfa7674f36e5557932d55a1cc93b02d42b2bb9df blob + 3d23c2ed4686dab24f05a354b7f7d7c9850bb888 --- config.c +++ config.c @@ -192,7 +192,7 @@ config_setsock(struct galileo *env) } } - /* close(fd); */ + close(fd); return (0); }