diff options
author | kotontrion <[email protected]> | 2024-07-17 08:33:53 +0200 |
---|---|---|
committer | kotontrion <[email protected]> | 2024-07-17 08:33:53 +0200 |
commit | 3e9d84ad529bda7f295b5b981fbc3a470772bd0d (patch) | |
tree | 9e3bf7e20e0cedc9aa6a335e8e45a90ab344d3aa /src | |
parent | b35a38aa93670f6be06202f2ad3066a227f0a1b9 (diff) |
move header to astal-auth.h
Diffstat (limited to 'src')
-rw-r--r-- | src/astal-auth.c | 2 | ||||
-rw-r--r-- | src/meson.build | 2 | ||||
-rw-r--r-- | src/pam.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/astal-auth.c b/src/astal-auth.c index ebacbb3..1c435ae 100644 --- a/src/astal-auth.c +++ b/src/astal-auth.c @@ -2,7 +2,7 @@ #include <stdio.h> #include <termios.h> -#include "auth.h" +#include "astal-auth.h" GMainLoop *loop; diff --git a/src/meson.build b/src/meson.build index d8eb796..6a34ae0 100644 --- a/src/meson.build +++ b/src/meson.build @@ -41,7 +41,7 @@ if get_option('introspection') symbol_prefix : 'astal_auth', identifier_prefix : 'AstalAuth', includes : ['GObject-2.0', 'Gio-2.0'], - header : 'astal/auth.h', + header : 'astal-auth.h', export_packages : pkg_config_name, install : true ) @@ -2,7 +2,7 @@ #include <security/_pam_types.h> #include <security/pam_appl.h> -#include "auth.h" +#include "astal-auth.h" struct _AstalAuthPam { GObject parent_instance; |