diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2008-11-19 23:52:24 +0200 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2008-11-19 23:52:24 +0200 |
commit | 1880a3927b23f265f63b2adb86fbdb81ea09eb06 (patch) | |
tree | 2fe1b65d21f81b28f46eb707378d97f553e99ee1 /src/lzmadec/lzmadec.c | |
parent | Oh well, big messy commit again. Some highlights: (diff) | |
download | xz-1880a3927b23f265f63b2adb86fbdb81ea09eb06.tar.xz |
Renamed lzma to xz and lzmadec to xzdec. We create symlinks
lzma, unlzma, and lzcat in "make install" for backwards
compatibility with LZMA Utils 4.32.x; I'm not sure if this
should be the default though.
Diffstat (limited to '')
-rw-r--r-- | src/xzdec/xzdec.c (renamed from src/lzmadec/lzmadec.c) | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lzmadec/lzmadec.c b/src/xzdec/xzdec.c index 0b2adb97..e100d049 100644 --- a/src/lzmadec/lzmadec.c +++ b/src/xzdec/xzdec.c @@ -1,6 +1,6 @@ /////////////////////////////////////////////////////////////////////////////// // -/// \file lzmadec.c +/// \file xzdec.c /// \brief Simple single-threaded tool to uncompress .lzma files // // Copyright (C) 2007 Lasse Collin @@ -151,7 +151,7 @@ set_default_memlimit(void) /// \brief Converts a string to size_t /// -/// This is rudely copied from src/lzma/util.c and modified a little. :-( +/// This is rudely copied from src/xz/util.c and modified a little. :-( /// static size_t str_to_uint64(const char *value) |