summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 3afaa72)
raw | patch | inline | side by side (parent: 3afaa72)
author | Johannes Schindelin <Johannes.Schindelin@gmx.de> | |
Sun, 25 Feb 2007 22:36:31 +0000 (23:36 +0100) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Sun, 4 Mar 2007 08:20:31 +0000 (00:20 -0800) |
This allows us to create "new file" and "delete file" patches.
It also cleans up the code.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
It also cleans up the code.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
diff-lib.c | patch | blob | history |
diff --git a/diff-lib.c b/diff-lib.c
index 470ad656a8766ff866e76bfde0ea4535743e0d5b..5e6bca5906f0fefbe54e0f91c2869c623019e7a7 100644 (file)
--- a/diff-lib.c
+++ b/diff-lib.c
return 0;
}
+static int get_mode(const char *path, int *mode)
+{
+ struct stat st;
+
+ if (!path || !strcmp(path, "/dev/null"))
+ *mode = 0;
+ else if (!strcmp(path, "-"))
+ *mode = ntohl(create_ce_mode(0666));
+ else if (stat(path, &st))
+ return error("Could not access '%s'", path);
+ else
+ *mode = st.st_mode;
+ return 0;
+}
+
static int queue_diff(struct diff_options *o,
const char *name1, const char *name2)
{
- struct stat st;
int mode1 = 0, mode2 = 0;
- if (name1) {
- if (!strcmp(name1, "-"))
- mode1 = ntohl(create_ce_mode(0666));
- else if (stat(name1, &st))
- return error("Could not access '%s'", name1);
- else
- mode1 = st.st_mode;
- }
- if (name2) {
- if (!strcmp(name2, "-"))
- mode2 = ntohl(create_ce_mode(0666));
- else if (stat(name2, &st))
- return error("Could not access '%s'", name2);
- else
- mode2 = st.st_mode;
- }
+ if (get_mode(name1, &mode1) || get_mode(name2, &mode2))
+ return -1;
if (mode1 && mode2 && S_ISDIR(mode1) != S_ISDIR(mode2))
return error("file/directory conflict: %s, %s", name1, name2);