diff options
author | Brad King <brad.king@kitware.com> | 2015-01-14 18:25:56 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2015-01-15 16:48:10 (GMT) |
commit | 6b9a0e17970391d2f7143ed9c600d5ea50dd6b98 (patch) | |
tree | ea0050a84632f3c6a4785f217e22947ae26c5871 /Utilities | |
parent | 3dec4a2bfbad7b519cb1e7c9aa72dd2ee3c4e669 (diff) | |
download | CMake-6b9a0e17970391d2f7143ed9c600d5ea50dd6b98.zip CMake-6b9a0e17970391d2f7143ed9c600d5ea50dd6b98.tar.gz CMake-6b9a0e17970391d2f7143ed9c600d5ea50dd6b98.tar.bz2 |
libarchive: Constify internal __archive_get_date implementation
The caller of this API already re-declares it as const, so update the
implementation accordingly.
Diffstat (limited to 'Utilities')
-rw-r--r-- | Utilities/cmlibarchive/libarchive/archive_getdate.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Utilities/cmlibarchive/libarchive/archive_getdate.c b/Utilities/cmlibarchive/libarchive/archive_getdate.c index aaa9d6f..f665e2d 100644 --- a/Utilities/cmlibarchive/libarchive/archive_getdate.c +++ b/Utilities/cmlibarchive/libarchive/archive_getdate.c @@ -39,7 +39,7 @@ __FBSDID("$FreeBSD$"); #include <time.h> /* This file defines a single public function. */ -time_t __archive_get_date(time_t now, char *); +time_t __archive_get_date(time_t now, const char *); /* Basic time units. */ #define EPOCH 1970 @@ -782,7 +782,7 @@ RelativeMonth(time_t Start, time_t Timezone, time_t RelMonth) * Tokenizer. */ static int -nexttoken(char **in, time_t *value) +nexttoken(const char **in, time_t *value) { char c; char buff[64]; @@ -809,7 +809,7 @@ nexttoken(char **in, time_t *value) /* Try the next token in the word table first. */ /* This allows us to match "2nd", for example. */ { - char *src = *in; + const char *src = *in; const struct LEXICON *tp; unsigned i = 0; @@ -894,7 +894,7 @@ difftm (struct tm *a, struct tm *b) * TODO: tokens[] array should be dynamically sized. */ time_t -__archive_get_date(time_t now, char *p) +__archive_get_date(time_t now, const char *p) { struct token tokens[256]; struct gdstate _gds; |