[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#50281] [RFC PATCH] build/jami-service: Fix range ends in account-fi
From: |
Maxime Devos |
Subject: |
[bug#50281] [RFC PATCH] build/jami-service: Fix range ends in account-fingerprint-rx. |
Date: |
Mon, 30 Aug 2021 19:39:35 +0200 |
This broke compilation of Guix with guile@3.0.2 with:
In procedure make-regexp: Invalid range end
The fix is to replace [0-9A-f] with [0-9A-Fa-f].
TODO: were both uppercase and lowercase intended, or
only one of the two?
* gnu/build/jami-service.scm
(account-fingerprint-rx): Correct regexp.
---
gnu/build/jami-service.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gnu/build/jami-service.scm b/gnu/build/jami-service.scm
index d44e87387d..ddfc8cf937 100644
--- a/gnu/build/jami-service.scm
+++ b/gnu/build/jami-service.scm
@@ -96,7 +96,7 @@ before each retry."
(list key value)))
alist))
-(define account-fingerprint-rx (make-regexp "[0-9A-f]{40}"))
+(define account-fingerprint-rx (make-regexp "[0-9A-Fa-f]{40}"))
(define (account-fingerprint? val)
"A Jami account fingerprint is 40 characters long and only contains
--
2.33.0
- [bug#50281] [RFC PATCH] build/jami-service: Fix range ends in account-fingerprint-rx.,
Maxime Devos <=