diff options
author | Eduardo Chappa <chappa@washington.edu> | 2015-01-07 21:02:55 -0700 |
---|---|---|
committer | Eduardo Chappa <chappa@washington.edu> | 2015-01-07 21:02:55 -0700 |
commit | 2ea73d14866f5eb39bc6a9aab36312abd6fa525c (patch) | |
tree | 4d934a855d58219abc5813b5519d8100812dd99d /mkinstalldirs | |
parent | 20d433c77e32dc05c2accf8ab943c2a7d9738239 (diff) | |
download | alpine-2ea73d14866f5eb39bc6a9aab36312abd6fa525c.tar.xz |
* new version 2.19.9999
* crash on importing certificates that do not have an email address
associated to them, such as those of a Certificate Authority.
* Disable saving new passwords to the password file. Implemented
by Louis Raphael from dpslabs.com.
* Panda IMAP does not decode correctly Korean text encoded in UTF-8.
Reported by Chulho Yang.
Diffstat (limited to 'mkinstalldirs')
-rwxr-xr-x | mkinstalldirs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mkinstalldirs b/mkinstalldirs index 4191a45d..55d537f8 100755 --- a/mkinstalldirs +++ b/mkinstalldirs @@ -81,9 +81,9 @@ case $dirmode in echo "mkdir -p -- $*" exec mkdir -p -- "$@" else - # On NextStep and OpenStep, the `mkdir' command does not + # On NextStep and OpenStep, the 'mkdir' command does not # recognize any option. It will interpret all options as - # directories to create, and then abort because `.' already + # directories to create, and then abort because '.' already # exists. test -d ./-p && rmdir ./-p test -d ./--version && rmdir ./--version |