diff options
author | Werner Koch <[email protected]> | 2015-04-24 13:19:10 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2015-04-24 13:19:10 +0000 |
commit | 17bcd087082d01c48c60ff20d7f9a40f34c6969f (patch) | |
tree | 0fe57bea4c9827cd9bd6b49562c68b36c7046a02 /common/stringhelp.c | |
parent | gpg: Move all DNS access to Dirmngr. (diff) | |
download | gnupg-17bcd087082d01c48c60ff20d7f9a40f34c6969f.tar.gz gnupg-17bcd087082d01c48c60ff20d7f9a40f34c6969f.zip |
common: Remove libjnlib-config.h (jnlib merge).
* common/libjnlib-config.h: Remove.
* common/common-defs.h (getenv) [HAVE_GETENV]: New. From removed
header.
(getpid) [HAVE_W32CE_SYSTEM]: New. From removed header.
* common/argparse.c: Include util.h and common-defs.h. Replace
jnlib_ macro names for non-GNUPG builds by x* names.
* common/dotlock.c: Ditto.
* common/logging.c: Include util.h and common-defs.h. Replace jnlib_
symbol names by x* names.
* common/strlist.c: Ditto.
* common/utf8conv.c: Ditto.
* common/w32-reg.c: Ditto.
* common/mischelp.c: Ditto. Also remove _jnlib_free.
* common/stringhelp.c: Ditto.
(JNLIB_LOG_WITH_PREFIX): Do not depend on this macro.
* common/logging.h (JNLIB_LOG_WITH_PREFIX): Do not depend on this
macro.
--
This is part 1 of the patches to merge the jnlib files into common/.
It does not make much sense to keep jnlib/ files separate. They are
not often use elsewhere and maintaining the complex marcos stuff is
too troublesome for the future.
Signed-off-by: Werner Koch <[email protected]>
Diffstat (limited to 'common/stringhelp.c')
-rw-r--r-- | common/stringhelp.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/common/stringhelp.c b/common/stringhelp.c index 7f40c7fa1..96710bfd4 100644 --- a/common/stringhelp.c +++ b/common/stringhelp.c @@ -50,7 +50,7 @@ #endif #include "util.h" -#include "libjnlib-config.h" +#include "common-defs.h" #include "utf8conv.h" #include "sysutils.h" #include "stringhelp.h" @@ -427,7 +427,7 @@ do_make_filename (int xmode, const char *first_part, va_list arg_ptr) { if (xmode) BUG (); - jnlib_set_errno (EINVAL); + gpg_err_set_errno (EINVAL); return NULL; } argc++; @@ -1136,7 +1136,7 @@ do_strconcat (const char *s1, va_list arg_ptr) needed += strlen (argv[argc]); if (argc >= DIM (argv)-1) { - jnlib_set_errno (EINVAL); + gpg_err_set_errno (EINVAL); return NULL; } argc++; |