]> the.earth.li Git - onak.git/blobdiff - maxpath.c
Remove --with-systemd option to dh
[onak.git] / maxpath.c
index fbd5a177deed76eb30139ebd8a5d85cd8abd7adf..f088cc615274cc6eb24a55c73f7391c9f7feffef 100644 (file)
--- a/maxpath.c
+++ b/maxpath.c
  * more details.
  *
  * You should have received a copy of the GNU General Public License along with
- * this program; if not, write to the Free Software Foundation, Inc., 51
- * Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ * this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 #include <getopt.h>
+#include <inttypes.h>
+#include <stdbool.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
 
-#include "stats.h"
 #include "hash.h"
 #include "keydb.h"
 #include "ll.h"
@@ -91,14 +91,18 @@ int main(int argc, char *argv[])
        while ((optchar = getopt(argc, argv, "c:")) != -1 ) {
                switch (optchar) {
                case 'c':
+                       if (configfile != NULL) {
+                               free(configfile);
+                       }
                        configfile = strdup(optarg);
                        break;
                }
        }
 
        readconfig(configfile);
+       free(configfile);
        initlogthing("maxpath", config.logfile);
-       dbctx = config.dbinit(true);
+       dbctx = config.dbinit(config.backend, true);
        if (dbctx != NULL) {
                inithash();
                findmaxpath(dbctx, 30);