diff options
author | Werner Koch <[email protected]> | 2009-08-26 08:55:57 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2009-08-26 08:55:57 +0000 |
commit | 5134fee5b090d68b19924ccad1994ce37732b91c (patch) | |
tree | 1f31fc25eabc362c1dba637ee211bf9fb9d83d13 /jnlib/stringhelp.h | |
parent | Fix debian bug#543530 (diff) | |
download | gnupg-5134fee5b090d68b19924ccad1994ce37732b91c.tar.gz gnupg-5134fee5b090d68b19924ccad1994ce37732b91c.zip |
Implement tilde expansion in the same was as 1.4.
Diffstat (limited to '')
-rw-r--r-- | jnlib/stringhelp.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/jnlib/stringhelp.h b/jnlib/stringhelp.h index 4cd81a1af..a560b163e 100644 --- a/jnlib/stringhelp.h +++ b/jnlib/stringhelp.h @@ -37,8 +37,8 @@ size_t length_sans_trailing_ws (const unsigned char *line, size_t len); char *make_basename(const char *filepath, const char *inputpath); char *make_dirname(const char *filepath); -char *make_filename( const char *first_part, ... ); -char *make_filename_try (const char *first_part, ... ); +char *make_filename( const char *first_part, ... ) GNUPG_GCC_A_SENTINEL(0); +char *make_filename_try (const char *first_part, ... ) GNUPG_GCC_A_SENTINEL(0); int compare_filenames( const char *a, const char *b ); int hextobyte (const char *s); |