summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/btrfs-tools/btrfs-tools/debian/01-labels.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/btrfs-tools/btrfs-tools/debian/01-labels.patch')
-rw-r--r--meta/recipes-devtools/btrfs-tools/btrfs-tools/debian/01-labels.patch29
1 files changed, 29 insertions, 0 deletions
diff --git a/meta/recipes-devtools/btrfs-tools/btrfs-tools/debian/01-labels.patch b/meta/recipes-devtools/btrfs-tools/btrfs-tools/debian/01-labels.patch
new file mode 100644
index 0000000000..b15a1c98ed
--- /dev/null
+++ b/meta/recipes-devtools/btrfs-tools/btrfs-tools/debian/01-labels.patch
@@ -0,0 +1,29 @@
1Upstream-Status: Inappropriate [distribution: debian]
2
3Author: Chris Mason <chris.mason@oracle.com>
4Description: Allow /'s in labels.
5
6diff -Naurp btrfs-tools.orig/mkfs.c btrfs-tools/mkfs.c
7--- btrfs-tools.orig/mkfs.c 2009-03-15 13:27:12.000000000 +0100
8+++ btrfs-tools/mkfs.c 2009-04-17 20:53:12.000000000 +0200
9@@ -294,7 +294,6 @@ static u64 parse_profile(char *s)
10
11 static char *parse_label(char *input)
12 {
13- int i;
14 int len = strlen(input);
15
16 if (len > BTRFS_LABEL_SIZE) {
17@@ -302,12 +301,6 @@ static char *parse_label(char *input)
18 BTRFS_LABEL_SIZE);
19 exit(1);
20 }
21- for (i = 0; i < len; i++) {
22- if (input[i] == '/' || input[i] == '\\') {
23- fprintf(stderr, "invalid label %s\n", input);
24- exit(1);
25- }
26- }
27 return strdup(input);
28 }
29