aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/btrfs-tools/btrfs-tools/debian/01-labels.patch
blob: b15a1c98ed2fbda9030e4a025ac41aa7e6aff6a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
Upstream-Status: Inappropriate [distribution: debian]

Author: Chris Mason <chris.mason@oracle.com>
Description: Allow /'s in labels.

diff -Naurp btrfs-tools.orig/mkfs.c btrfs-tools/mkfs.c
--- btrfs-tools.orig/mkfs.c	2009-03-15 13:27:12.000000000 +0100
+++ btrfs-tools/mkfs.c	2009-04-17 20:53:12.000000000 +0200
@@ -294,7 +294,6 @@ static u64 parse_profile(char *s)
 
 static char *parse_label(char *input)
 {
-	int i;
 	int len = strlen(input);
 
 	if (len > BTRFS_LABEL_SIZE) {
@@ -302,12 +301,6 @@ static char *parse_label(char *input)
 			BTRFS_LABEL_SIZE);
 		exit(1);
 	}
-	for (i = 0; i < len; i++) {
-		if (input[i] == '/' || input[i] == '\\') {
-			fprintf(stderr, "invalid label %s\n", input);
-			exit(1);
-		}
-	}
 	return strdup(input);
 }