X-Git-Url: https://the.earth.li/gitweb/?a=blobdiff_plain;f=keydb_pg.c;h=c643a79a57c38bd9e44305daec3af1a0282e6fee;hb=7b7cb978ab032edb192effcd9eac443d8800b565;hp=3b127910467ff9e4e1f7dcf417f67983dd6bd2e9;hpb=3b5b9db0bc2dbe93b3b79e722997606c71ecafb9;p=onak.git diff --git a/keydb_pg.c b/keydb_pg.c index 3b12791..c643a79 100644 --- a/keydb_pg.c +++ b/keydb_pg.c @@ -4,6 +4,8 @@ * Jonathan McDowell * * Copyright 2002 Project Purple + * + * $Id: keydb_pg.c,v 1.11 2003/06/05 07:32:00 noodles Exp $ */ #include @@ -557,6 +559,21 @@ struct ll *getkeysigs(uint64_t keyid) return sigs; } +/** + * dumpdb - dump the key database + * @filenamebase: The base filename to use for the dump. + * + * Dumps the database into one or more files, which contain pure OpenPGP + * that can be reimported into onak or gpg. filenamebase provides a base + * file name for the dump; several files may be created, all of which will + * begin with this string and then have a unique number and a .pgp + * extension. + * */ +int dumpdb(char *filenamebase) +{ + return 0; +} + /* * Include the basic keydb routines. */