Skip to content

Commit

Permalink
Merge pull request #26 from weiss/accept-slash
Browse files Browse the repository at this point in the history
bconsole: Add '/' to the list of acceptable volume name characters
  • Loading branch information
Marco van Wieringen committed Jun 25, 2015
2 parents aef2253 + 070a482 commit 78bb459
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/edit.c
Original file line number Diff line number Diff line change
Expand Up @@ -482,7 +482,7 @@ bool is_name_valid(const char *name, POOLMEM **msg)
int len;
const char *p;
/* Special characters to accept */
const char *accept = ":.-_ ";
const char *accept = ":.-_/ ";

/* No name is invalid */
if (!name) {
Expand Down

0 comments on commit 78bb459

Please sign in to comment.