]> the.earth.li Git - onak.git/blobdiff - add.c
Fix up dynamic loading; we export a structure of functions now from
[onak.git] / add.c
diff --git a/add.c b/add.c
index 10627f281105d8bb3369aaf5c122b7d37e2086c0..3a9161f6b86c5231df65727f24031af4c618aad0 100644 (file)
--- a/add.c
+++ b/add.c
@@ -68,16 +68,21 @@ int main(int argc, char *argv[])
                                count);
                        printf("Storing %d keys.\n", count);
                        end_html();
-                       fclose(stdout);
-                       fclose(stderr);
+                       if (stdout != NULL && fileno(stdout) != -1) {
+                               fclose(stdout);
+                       }
+                       if (stderr != NULL && stderr != stdout &&
+                                       fileno(stderr) != -1) {
+                               fclose(stderr);
+                       }
                        catchsignals();
-                       initdb(false);
+                       config.dbbackend->initdb(false);
                        
                        count = cleankeys(keys);
                        logthing(LOGTHING_INFO, "%d keys cleaned.",
                                        count);
 
-                       count = update_keys(&keys, true);
+                       count = config.dbbackend->update_keys(&keys, true);
                        logthing(LOGTHING_NOTICE, "Got %d new keys.",
                                count);
 
@@ -86,7 +91,7 @@ int main(int argc, char *argv[])
                                keys = NULL;
                        }
                        
-                       cleanupdb();
+                       config.dbbackend->cleanupdb();
                } else {
                        puts("No OpenPGP packets found in input.");
                        end_html();