author | Lars Hjemli <hjemli@gmail.com> | 2008-11-06 18:18:27 (UTC) |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2008-11-06 18:18:27 (UTC) |
commit | b8a7eb12d459c48943e31762b24b169af8c427a1 (patch) (side-by-side diff) | |
tree | bb5bfcf6e5f71a478e7586bd1d128aa94bfd7dbe | |
parent | 140012d7a8e51df5a9f9c556696778b86ade4fc9 (diff) | |
parent | e4d2f2b042100182ff5b214fd6848b71d70fad7d (diff) | |
download | cgit-b8a7eb12d459c48943e31762b24b169af8c427a1.zip cgit-b8a7eb12d459c48943e31762b24b169af8c427a1.tar.gz cgit-b8a7eb12d459c48943e31762b24b169af8c427a1.tar.bz2 |
Merge branch 'stable'
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | cache.c | 4 | ||||
m--------- | git | 0 | ||||
-rwxr-xr-x | tests/setup.sh | 6 | ||||
-rw-r--r-- | ui-plain.c | 2 |
5 files changed, 8 insertions, 6 deletions
@@ -6,3 +6,3 @@ CACHE_ROOT = /var/cache/cgit SHA1_HEADER = <openssl/sha.h> -GIT_VER = 1.6.0.2 +GIT_VER = 1.6.0.3 GIT_URL = http://www.kernel.org/pub/software/scm/git/git-$(GIT_VER).tar.bz2 @@ -418,3 +418,3 @@ int cache_ls(const char *path) } - printf("%s %s %10zd %s\n", + printf("%s %s %10"PRIuMAX" %s\n", name, @@ -422,3 +422,3 @@ int cache_ls(const char *path) slot.cache_st.st_mtime), - slot.cache_st.st_size, + (uintmax_t)slot.cache_st.st_size, slot.buf); diff --git a/git b/git -Subproject 97a7a82f199f165f85fe39a3c318b18c621e633 +Subproject 031e6c898f61db1ae0c0be641eac6532c1000d5 diff --git a/tests/setup.sh b/tests/setup.sh index 1457dd5..95acb54 100755 --- a/tests/setup.sh +++ b/tests/setup.sh @@ -27,3 +27,4 @@ mkrepo() { git init - for ((n=1; n<=count; n++)) + n=1 + while test $n -le $count do @@ -32,2 +33,3 @@ mkrepo() { git commit -m "commit $n" + n=$(expr $n + 1) done @@ -103,3 +105,3 @@ run_test() script=$2 - ((test_count++)) + test_count=$(expr $test_count + 1) printf "\ntest %d: name='%s'\n" $test_count "$desc" >>test-output.log @@ -20,3 +20,3 @@ static void print_object(const unsigned char *sha1, const char *path) char *buf; - size_t size; + unsigned long size; |