Branch data Line data Source code
1 : : /* SPDX-License-Identifier: LGPL-2.1+ */ 2 : : 3 : : #include <string.h> 4 : : 5 : : #include "login-util.h" 6 : : #include "string-util.h" 7 : : 8 : 780 : bool session_id_valid(const char *id) { 9 : : 10 [ + + ]: 780 : if (isempty(id)) 11 : 8 : return false; 12 : : 13 : 772 : return id[strspn(id, LETTERS DIGITS)] == '\0'; 14 : : }