From b866c830d94f40b6e233eb6809ec2f8f43279922 Mon Sep 17 00:00:00 2001 From: Pawel Jakub Dawidek Date: Sat, 20 Aug 2005 17:05:47 +0000 Subject: [PATCH] Back-out the change from revision 1.14 and allow for '/' in labels again. Convinced by: green, Gavin Atkinson, dougb, gordon MFC after: 1 day --- sys/geom/label/g_label.c | 8 -------- 1 file changed, 8 deletions(-) diff --git a/sys/geom/label/g_label.c b/sys/geom/label/g_label.c index 1f49d0b65eb..f04a4b584ee 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); }