Differences From:
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]
To:
File
src/clearsign.c
part of check-in
[5cc845cfeb]
- Rename the 'clearsign' setting to 'pgp-command'. Remove the
'safemerge' setting - safemerge is on by default and cannot be
disabled.
by
drh on
2008-02-08 21:42:46.
[view]
@@ -35,9 +35,9 @@
int clearsign(Blob *pIn, Blob *pOut){
char *zRand;
char *zIn;
char *zOut;
- char *zBase = db_get("clear-sign", "gpg --clearsign -o ");
+ char *zBase = db_get("pgp-command", "gpg --clearsign -o ");
char *zCmd;
int rc;
zRand = db_text(0, "SELECT hex(randomblob(10))");
zOut = mprintf("out-%s", zRand);