From: Jonathan McDowell Date: Mon, 31 May 2004 23:47:44 +0000 (+0000) Subject: cscvs to tla changeset 80 X-Git-Url: https://git.sommitrealweird.co.uk/onak.git/commitdiff_plain/7b7cb978ab032edb192effcd9eac443d8800b565 cscvs to tla changeset 80 Author: noodles Date: 2003/06/05 07:31:59 Add null dumpdb functions to Postgres/file backends so they compile again. --- diff --git a/keydb_file.c b/keydb_file.c index 65e6b5f..0ca39ae 100644 --- a/keydb_file.c +++ b/keydb_file.c @@ -5,7 +5,7 @@ * * Copyright 2002 Project Purple * - * $Id: keydb_file.c,v 1.8 2003/06/04 20:57:09 noodles Exp $ + * $Id: keydb_file.c,v 1.9 2003/06/05 07:31:59 noodles Exp $ */ #include @@ -169,6 +169,21 @@ int fetch_key_text(const char *search, struct openpgp_publickey **publickey) return 0; } +/** + * 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. */ diff --git a/keydb_pg.c b/keydb_pg.c index ade6bfd..c643a79 100644 --- a/keydb_pg.c +++ b/keydb_pg.c @@ -5,7 +5,7 @@ * * Copyright 2002 Project Purple * - * $Id: keydb_pg.c,v 1.10 2003/06/04 20:57:09 noodles Exp $ + * $Id: keydb_pg.c,v 1.11 2003/06/05 07:32:00 noodles Exp $ */ #include @@ -559,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. */