]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/basic/login-util.c
Add SPDX license identifiers to source files under the LGPL
[thirdparty/systemd.git] / src / basic / login-util.c
CommitLineData
53e1b683 1/* SPDX-License-Identifier: LGPL-2.1+ */
35375afe
ZJS
2/***
3 This file is part of systemd.
4
5 Copyright 2013 Zbigniew Jędrzejewski-Szmek
6
7 systemd is free software; you can redistribute it and/or modify it
8 under the terms of the GNU Lesser General Public License as published by
9 the Free Software Foundation; either version 2.1 of the License, or
10 (at your option) any later version.
11
12 systemd is distributed in the hope that it will be useful, but
13 WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 Lesser General Public License for more details.
16
17 You should have received a copy of the GNU Lesser General Public License
18 along with systemd; If not, see <http://www.gnu.org/licenses/>.
19***/
20
11c3a366
TA
21#include <string.h>
22
07630cea 23#include "login-util.h"
cf0fbc49 24#include "string-util.h"
4b549144
ZJS
25
26bool session_id_valid(const char *id) {
4b549144 27
8b0849e9
LP
28 if (isempty(id))
29 return false;
30
31 return id[strspn(id, LETTERS DIGITS)] == '\0';
4b549144 32}