aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhillip Lougher <phillip@squashfs.org.uk>2014-08-31 03:31:07 +0100
committerPhillip Lougher <phillip@squashfs.org.uk>2014-08-31 03:31:07 +0100
commit26d29c119544faf6800f6e1056a646253c5c46da (patch)
tree7bd36de65920a4e03e6303ed995b40202dfc7774
parent051eafc838200122d9fc7217aafd8bead8b2307d (diff)
downloadsquashfs-tools-26d29c119544faf6800f6e1056a646253c5c46da.tar.gz
action: add chmod() as a synonym for mode()
When testing the mode action, I'm always typing chmod() as that's what it's called elsewhere. So add chmod as a synonym, it should probably have been called chmod in the first place. Signed-off-by: Phillip Lougher <phillip@squashfs.org.uk>
-rw-r--r--squashfs-tools/action.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/squashfs-tools/action.c b/squashfs-tools/action.c
index 0808cde..c442231 100644
--- a/squashfs-tools/action.c
+++ b/squashfs-tools/action.c
@@ -3141,5 +3141,6 @@ static struct action_entry action_table[] = {
{ "empty", EMPTY_ACTION, -2, ACTION_DIR, parse_empty_args, NULL},
{ "move", MOVE_ACTION, -2, ACTION_ALL_LNK, NULL, NULL},
{ "prune", PRUNE_ACTION, 0, ACTION_ALL_LNK, NULL, NULL},
+ { "chmod", MODE_ACTION, -2, ACTION_ALL, parse_mode_args, mode_action },
{ "", 0, -1, 0, NULL, NULL}
};