aboutsummaryrefslogtreecommitdiffstats
path: root/agent/preset-passphrase.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2012-02-06common: Add a global variable to for the default error source.Werner Koch1-0/+1
For the shared code parts it is cumbersome to pass an error sourse variable to each function. Its value is always a constant for a given binary and thus a global variable makes things a lot easier than the former macro stuff. * common/init.c (default_errsource): New global var. (init_common_subsystems): Rename to _init_common_subsystems. Set DEFAULT_ERRSOURCE. * common/init.h: Assert value of GPG_ERR_SOURCE_DEFAULT. (init_common_subsystems): New macro. * common/util.h (default_errsource): Add declaration. * kbx/keybox-defs.h: Add some GPG_ERR_SOURCE_DEFAULT trickery.
2011-02-04Nuked almost all trailing white space.post-nuke-of-trailing-wsWerner Koch1-9/+9
We better do this once and for all instead of cluttering all future commits with diffs of trailing white spaces. In the majority of cases blank or single lines are affected and thus this change won't disturb a git blame too much. For future commits the pre-commit scripts checks that this won't happen again.
2010-06-17Avoid using the protect-tool to import pkcs#12.Werner Koch1-1/+0
2010-06-07Add unfinished gpgtar.Werner Koch1-2/+6
Collected changes and ports of bug fixes from stable.
2010-03-22More chnages to use estream. Add a way to replace the standardWerner Koch1-1/+1
descriptors.
2009-07-21Make bug reporting address easier changeable.Werner Koch1-2/+2
2008-12-09Minor fixes.Werner Koch1-2/+1
2008-09-03Fix gpg-preset-passphrase bug.Werner Koch1-34/+6
Cleanups
2008-05-27Fixed segv in gpg-agent (command marktrusted).Werner Koch1-2/+2
Replaced almost all free by xfree. Translation fixes.
2007-07-04Changed to GPLv3.Werner Koch1-4/+2
Removed intl/.
2007-06-14A whole bunch of changes to allow building for Windows.Werner Koch1-41/+11
See the ChangeLogs for details.
2007-06-06First steps towards supporting W32.Werner Koch1-15/+0
This is mainly source code reorganization. Update gnulib. g10/ does currently not build.
2006-09-14Take advantage of newer gpg-error features.Werner Koch1-5/+5
2006-09-13Various fixes and new features.Werner Koch1-2/+7
Enhanced gpg-connect-agent.
2006-08-16With --enable-gpg the keyservers are now build and a first test using gpg2Werner Koch1-4/+4
shows no prblems. Needs more testing of course.
2006-07-292006-07-29 Marcus Brinkmann <[email protected]>GNUPG-1-9-BRANCHMarcus Brinkmann1-2/+45
* preset-passphrase.c (preset_passphrase): Do not strip off last character of passphrase. (make_hexstring): New function. * command.c (cmd_preset_passphrase): Use parse_hexstring to syntax check passphrase argument. Truncate passphrase at delimiter.
2006-06-20Updated FSF's address.Werner Koch1-1/+2
2004-12-21* preset-passphrase.c (preset_passphrase): Handle --passphrase.Werner Koch1-0/+293
* Makefile.am (gpg_preset_passphrase_LDADD): Reorder libs so that pwquery may use stuff from jnlib. Conditionally add -lwsock2 (gpg_protect_tool_LDADD): Ditto. * preset-passphrase.c (main): Use default_homedir(). (main) [W32]: Initialize sockets. * simple-pwquery.c (agent_open) [W32]: Implement for W32. (readline) [W32]: Use recv instead of read. (writen) [W32]: Use send instead of write. (my_stpcpy): Define a stpcpy replacement so that this file continues to be self-contained. (agent_send_all_options) [W32]: Don't call ttyname. * gnupg-badge-openpgp.eps, gnupg-badge-openpgp.jpg: New * gnupg.texi: Add a logo. * sysnotes.texi: New. * gpgsm.c (main): Use default_homedir(). (main) [W32]: Default to disabled CRL checks. * gpgconf-comp.c (get_config_pathname) [DOSISH]: Detect absolute pathnames with a drive letter.