]> git.proxmox.com Git - proxmox-backup.git/commitdiff
api-types: more regex fixups
authorWolfgang Bumiller <w.bumiller@proxmox.com>
Mon, 25 Apr 2022 09:52:12 +0000 (11:52 +0200)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Thu, 12 May 2022 07:33:50 +0000 (09:33 +0200)
Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
pbs-api-types/src/lib.rs

index 17eeb52b86daee3712e348f1bc692724372760d7..4f0c92039a4312ddb5e512c4950f8ea002219731 100644 (file)
@@ -30,7 +30,7 @@ macro_rules! BACKUP_TIME_RE { () => (r"[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]
 #[macro_export]
 macro_rules! BACKUP_NS_RE {
     () => (
-        concat!(r"(:?", PROXMOX_SAFE_ID_REGEX_STR!(), r"/){0,7}", PROXMOX_SAFE_ID_REGEX_STR!())
+        concat!(r"(?:", PROXMOX_SAFE_ID_REGEX_STR!(), r"/){0,7}", PROXMOX_SAFE_ID_REGEX_STR!())
     );
 }
 
@@ -38,7 +38,7 @@ macro_rules! BACKUP_NS_RE {
 #[macro_export]
 macro_rules! BACKUP_NS_PATH_RE {
     () => (
-        concat!(r"(:?ns/", PROXMOX_SAFE_ID_REGEX_STR!(), r"/){0,7}ns/", PROXMOX_SAFE_ID_REGEX_STR!())
+        concat!(r"(?:ns/", PROXMOX_SAFE_ID_REGEX_STR!(), r"/){0,7}ns/", PROXMOX_SAFE_ID_REGEX_STR!())
     );
 }