summaryrefslogtreecommitdiffstats
path: root/sys/geom/label/g_label.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/geom/label/g_label.c')
-rw-r--r--sys/geom/label/g_label.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/sys/geom/label/g_label.c b/sys/geom/label/g_label.c
index 1f49d0b..f04a4b5 100644
--- a/sys/geom/label/g_label.c
+++ b/sys/geom/label/g_label.c
@@ -263,20 +263,12 @@ g_label_taste(struct g_class *mp, struct g_provider *pp, int flags __unused)
} while (0);
for (i = 0; g_labels[i] != NULL; i++) {
char label[64];
- char *p;
g_topology_unlock();
g_labels[i]->ld_taste(cp, label, sizeof(label));
g_topology_lock();
if (label[0] == '\0')
continue;
- /*
- * Don't allow / in labels.
- */
- for (p = label; *p != '\0'; p++) {
- if (*p == '/')
- *p = '_';
- }
g_label_create(NULL, mp, pp, label, g_labels[i]->ld_dir,
pp->mediasize);
}
OpenPOWER on IntegriCloud