[PATCH] git-tar-tree: fix write_trailer
[git.git] / rpush.c
diff --git a/rpush.c b/rpush.c
index 3f2c898..17d5ab8 100644 (file)
--- a/rpush.c
+++ b/rpush.c
@@ -3,7 +3,7 @@
 #include <sys/socket.h>
 #include <errno.h>
 
-void service(int fd_in, int fd_out) {
+static void service(int fd_in, int fd_out) {
        ssize_t size;
        int posn;
        char unsigned sha1[20];
@@ -14,7 +14,7 @@ void service(int fd_in, int fd_out) {
                do {
                        size = read(fd_in, sha1 + posn, 20 - posn);
                        if (size < 0) {
-                               perror("rpush: read ");
+                               perror("git-rpush: read ");
                                return;
                        }
                        if (!size)
@@ -26,7 +26,7 @@ void service(int fd_in, int fd_out) {
 
                buf = map_sha1_file(sha1, &objsize);
                if (!buf) {
-                       fprintf(stderr, "rpush: could not find %s\n", 
+                       fprintf(stderr, "git-rpush: could not find %s\n", 
                                sha1_to_hex(sha1));
                        return;
                }
@@ -35,9 +35,9 @@ void service(int fd_in, int fd_out) {
                        size = write(fd_out, buf + posn, objsize - posn);
                        if (size <= 0) {
                                if (!size) {
-                                       fprintf(stderr, "rpush: write closed");
+                                       fprintf(stderr, "git-rpush: write closed");
                                } else {
-                                       perror("rpush: write ");
+                                       perror("git-rpush: write ");
                                }
                                return;
                        }
@@ -56,7 +56,7 @@ int main(int argc, char **argv)
                 arg++;
         }
         if (argc < arg + 2) {
-                usage("rpush [-c] [-t] [-a] commit-id url");
+                usage("git-rpush [-c] [-t] [-a] commit-id url");
                 return 1;
         }
        commit_id = argv[arg];