diff options
author | Allison Karlitskaya <allison.karlitskaya@redhat.com> | 2024-08-26 10:32:47 +0200 |
---|---|---|
committer | Luca Boccassi <luca.boccassi@gmail.com> | 2024-08-26 17:54:59 +0200 |
commit | 2bdf027de180b0a66eb05ce44e85d79c7bbc17f0 (patch) | |
tree | 02c7b7e1f824ecb6853bdce557e6b694aa9562c5 /src | |
parent | crash-handler: Add back notice log message (diff) | |
download | systemd-2bdf027de180b0a66eb05ce44e85d79c7bbc17f0.tar.xz systemd-2bdf027de180b0a66eb05ce44e85d79c7bbc17f0.zip |
man: document "web" session type
This has been supported since e9e74f28d783 but never got documented.
Add it to the man pages (plus one comment in a header).
Closes #34127.
Diffstat (limited to 'src')
-rw-r--r-- | src/systemd/sd-login.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/systemd/sd-login.h b/src/systemd/sd-login.h index c84f2c06bc..99ca8b8ed5 100644 --- a/src/systemd/sd-login.h +++ b/src/systemd/sd-login.h @@ -172,7 +172,7 @@ int sd_session_get_start_time(const char *session, uint64_t *usec); /* Determine the (PAM) service name this session was registered by. */ int sd_session_get_service(const char *session, char **service); -/* Determine the type of this session, i.e. one of "tty", "x11", "wayland", "mir" or "unspecified". */ +/* Determine the type of this session, i.e. one of "tty", "x11", "wayland", "mir", "web", or "unspecified". */ int sd_session_get_type(const char *session, char **type); /* Determine the class of this session, i.e. one of "user", "greeter" or "lock-screen". */ |