diff options
author | Peter Stephenson <pws@users.sourceforge.net> | 2009-03-20 10:36:06 +0000 |
---|---|---|
committer | Peter Stephenson <pws@users.sourceforge.net> | 2009-03-20 10:36:06 +0000 |
commit | 06e22c93708a79e38477394501d8505489bd8685 (patch) | |
tree | 783c5d97448659573242be6837a72b7c92b9e3d9 | |
parent | 9cc93fe728a60960e5e2ce7ed664ce0e60863b4e (diff) | |
download | zsh-06e22c93708a79e38477394501d8505489bd8685.tar.gz zsh-06e22c93708a79e38477394501d8505489bd8685.tar.xz zsh-06e22c93708a79e38477394501d8505489bd8685.zip |
Bart: 26761: typo in realpath() check
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | Src/hist.c | 2 |
2 files changed, 6 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog index c51d79298..43cfd8c16 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2009-03-20 Peter Stephenson <pws@csr.com> + + * Bart: 26761: Src/hist.c: typo in 26754. + 2009-03-19 Peter Stephenson <pws@csr.com> * Mikael: 26759: Src/Modules/curses.mdd: missing here-document @@ -11454,5 +11458,5 @@ ***************************************************** * This is used by the shell to define $ZSH_PATCHLEVEL -* $Revision: 1.4627 $ +* $Revision: 1.4628 $ ***************************************************** diff --git a/Src/hist.c b/Src/hist.c index b843a2399..80c5f1752 100644 --- a/Src/hist.c +++ b/Src/hist.c @@ -1583,7 +1583,7 @@ chrealpath(char **junkptr) #ifdef HAVE_CANONICALIZE_FILE_NAME char *lastpos, *nonreal, *real; #else -# ifdef HAVE_REAL_PATH +# ifdef HAVE_REALPATH char *lastpos, *nonreal, real[PATH_MAX]; # endif #endif |