Skip to content

Commit

Permalink
bconsole: Fix list of acceptable volume name chars
Browse files Browse the repository at this point in the history
Bareos accepts slashes in volume names since commit
7969af6.
  • Loading branch information
weiss authored and joergsteffens committed Jul 5, 2016
1 parent f219b98 commit c34484e
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 c34484e

Please sign in to comment.