mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-03 22:56:33 +02:00
common: Prefix the mkdir functions with gnupg_. Make args const.
* common/mkdir_p.h (mkdir_p): Rename from this... (gnupg_mkdir_p): ... to this. Change directory_component's type from char * to const char *. (amkdir_p): Rename from this... (gnupg_amkdir_p): ... to this. Change directory_component's type from char * to const char *. * common/mkdir_p.c (mkdir_p): Rename from this... (gnupg_mkdir_p): ... to this. Change directory_component's type from char * to const char *. (amkdir_p): Rename from this... (gnupg_amkdir_p): ... to this. Change directory_component's type from char * to const char *. -- Signed-off-by: Neal H. Walfield <neal@g10code.com>.
This commit is contained in:
parent
3de5ef7598
commit
93e855553e
2 changed files with 5 additions and 5 deletions
|
@ -41,7 +41,7 @@
|
|||
|
||||
|
||||
gpg_error_t
|
||||
amkdir_p (char **directory_components)
|
||||
gnupg_amkdir_p (const char **directory_components)
|
||||
{
|
||||
gpg_error_t err = 0;
|
||||
int count;
|
||||
|
@ -138,7 +138,7 @@ amkdir_p (char **directory_components)
|
|||
|
||||
|
||||
gpg_error_t
|
||||
mkdir_p (char *directory_component, ...)
|
||||
gnupg_mkdir_p (const char *directory_component, ...)
|
||||
{
|
||||
va_list ap;
|
||||
gpg_error_t err = 0;
|
||||
|
@ -174,7 +174,7 @@ mkdir_p (char *directory_component, ...)
|
|||
va_end (ap);
|
||||
|
||||
if (!err)
|
||||
err = amkdir_p (dirs);
|
||||
err = gnupg_amkdir_p (dirs);
|
||||
|
||||
xfree (dirs);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue