blob: 044e8b7650ec606a0ba6af52902e21bcb50b6ce1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* SPDX-License-Identifier: LGPL-2.1-or-later */
#include "login-util.h"
#include "string-util.h"
bool session_id_valid(const char *id) {
if (isempty(id))
return false;
return id[strspn(id, LETTERS DIGITS)] == '\0';
}
|