Diff
Not logged in

Differences From:

File src/clearsign.c part of check-in [e37451d9c2] - Add the ability to sign manifests using GPG during a check-in. Due to a bug in the manifest parser, older versions will not be able to check-out signed manifests. by drh on 2007-08-01 21:59:38. [view]

To:

File src/clearsign.c part of check-in [134e2aeccc] - Combine the "config" and "setting" commands into a single "settings" command. by drh on 2007-09-28 20:08:32. Also file src/clearsign.c part of check-in [d0305b305a] - Merged mainline into my branch to get the newest application. by aku on 2007-12-05 08:07:46. [view]

@@ -35,9 +35,9 @@
 int clearsign(Blob *pIn, Blob *pOut){
   char *zRand;
   char *zIn;
   char *zOut;
-  char *zBase = db_global_get("clear-sign", "gpg --clearsign -o ");
+  char *zBase = db_get("clear-sign", "gpg --clearsign -o ");
   char *zCmd;
   int rc;
   zRand = db_text(0, "SELECT hex(randomblob(10))");
   zOut = mprintf("out-%s", zRand);