Changeset 535
- Timestamp:
- 02/19/07 14:18:30 (2 years ago)
- Files:
-
- trunk/src/vcd/methods/vx/vx_create.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/vcd/methods/vx/vx_create.c
r534 r535 674 674 method_return_if_fault(env); 675 675 676 /* validate name */677 if (!validate_name(name))678 method_return_faultf(env, MEINVAL,679 "invalid name value: %s", name);680 681 676 /* get template dir */ 682 677 if (str_isempty(template) || !str_isgraph(template)) … … 708 703 } 709 704 705 /* we don't return MEPERM here, since an attacker could 706 * find out existing vservers by trail&error */ 710 707 else 711 method_return_fault(env, ME PERM);708 method_return_fault(env, MENOVPS); 712 709 } 713 710
