]> gitweb.ps.run Git - ps-cgit/commitdiff
Merge branch 'stable'
authorLars Hjemli <hjemli@gmail.com>
Thu, 6 Nov 2008 18:18:27 +0000 (19:18 +0100)
committerLars Hjemli <hjemli@gmail.com>
Thu, 6 Nov 2008 18:18:27 +0000 (19:18 +0100)
Makefile
cache.c
git
tests/setup.sh
ui-plain.c

index 561af76f31ff038d31fa56d30c77956673625b17..f79688c3dd3b80914235c22865b8fa49419d5c4a 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -4,7 +4,7 @@ CGIT_SCRIPT_PATH = /var/www/htdocs/cgit
 CGIT_CONFIG = /etc/cgitrc
 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
 
 #
diff --git a/cache.c b/cache.c
index 57068a11faa727f339777ec0ed0bc0e4d3b7a684..d7a8d5a913c72930a6c208246f7a8fea3300fe02 100644 (file)
--- a/cache.c
+++ b/cache.c
@@ -416,11 +416,11 @@ int cache_ls(const char *path)
                                  fullname, strerror(err), err);
                        continue;
                }
-               printf("%s %s %10zd %s\n",
+               printf("%s %s %10"PRIuMAX" %s\n",
                       name,
                       sprintftime("%Y-%m-%d %H:%M:%S",
                                   slot.cache_st.st_mtime),
-                      slot.cache_st.st_size,
+                      (uintmax_t)slot.cache_st.st_size,
                       slot.buf);
                close_slot(&slot);
        }
diff --git a/git b/git
index 97a7a82f199f165f85fe39a3c318b18c621e6335..031e6c898f61db1ae0c0be641eac6532c1000d56 160000 (submodule)
--- a/git
+++ b/git
@@ -1 +1 @@
-Subproject commit 97a7a82f199f165f85fe39a3c318b18c621e6335
+Subproject commit 031e6c898f61db1ae0c0be641eac6532c1000d56
index 1457dd51ec948595ff9f73a758c01f04501347b4..95acb542feb0644314427077bf137c3caeb5d8b9 100755 (executable)
@@ -25,11 +25,13 @@ mkrepo() {
        mkdir -p $name
        cd $name
        git init
-       for ((n=1; n<=count; n++))
+       n=1
+       while test $n -le $count
        do
                echo $n >file-$n
                git add file-$n
                git commit -m "commit $n"
+               n=$(expr $n + 1)
        done
        if test "$3" = "testplus"
        then
@@ -101,7 +103,7 @@ run_test()
 {
        desc=$1
        script=$2
-       ((test_count++))
+       test_count=$(expr $test_count + 1)
        printf "\ntest %d: name='%s'\n" $test_count "$desc" >>test-output.log
        printf "test %d: eval='%s'\n" $test_count "$2" >>test-output.log
        eval "$2" >>test-output.log 2>>test-output.log
index be559e02e5192606e6ceccda40c2b05afaf70862..5addd9e686539ca41f264394ecf6836aa739af4e 100644 (file)
@@ -18,7 +18,7 @@ static void print_object(const unsigned char *sha1, const char *path)
 {
        enum object_type type;
        char *buf;
-       size_t size;
+       unsigned long size;
 
        type = sha1_object_info(sha1, &size);
        if (type == OBJ_BAD) {