blob: 499bc2120831b69f5e6758842753c5a8280e8175 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/* SPDX-License-Identifier: LGPL-2.1+ */
/***
Copyright © 2013 Zbigniew Jędrzejewski-Szmek
***/
#include <string.h>
#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';
}
|