Skip to content

Commit 8bd5aec

Browse files
committed
fix: invalid regex ranges in dns_cyon
1 parent 8cac773 commit 8bd5aec

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

dnsapi/dns_cyon.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -304,19 +304,19 @@ _cyon_get_response_message() {
304304
}
305305

306306
_cyon_get_response_status() {
307-
_egrep_o '"status":[a-zA-z0-9]*' | cut -d : -f 2
307+
_egrep_o '"status":[a-zA-Z0-9]*' | cut -d : -f 2
308308
}
309309

310310
_cyon_get_validation_status() {
311-
_egrep_o '"valid":[a-zA-z0-9]*' | cut -d : -f 2
311+
_egrep_o '"valid":[a-zA-Z0-9]*' | cut -d : -f 2
312312
}
313313

314314
_cyon_get_response_success() {
315315
_egrep_o '"onSuccess":"[^"]*"' | cut -d : -f 2 | tr -d '"'
316316
}
317317

318318
_cyon_get_environment_change_status() {
319-
_egrep_o '"authenticated":[a-zA-z0-9]*' | cut -d : -f 2
319+
_egrep_o '"authenticated":[a-zA-Z0-9]*' | cut -d : -f 2
320320
}
321321

322322
_cyon_check_if_2fa_missed() {

0 commit comments

Comments
 (0)