Skip to content

Commit 3074514

Browse files
authored
Merge branch 'main' into fix/gsad-chroot-working-directory
2 parents d9537c8 + a7e6592 commit 3074514

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ cmake_minimum_required(VERSION 3.18)
66

77
message("-- Configuring gsad")
88

9-
project(gsad VERSION 24.15.1 LANGUAGES C)
9+
project(gsad VERSION 24.15.2 LANGUAGES C)
1010

1111
if(NOT DEFINED PROJECT_VERSION_STRING)
1212
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${CMAKE_CURRENT_SOURCE_DIR}/cmake)

src/gsad.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1315,8 +1315,8 @@ chroot_drop_privileges (gboolean do_chroot, const gchar *drop, const gchar *dir)
13151315
g_critical ("Failed to drop privileges");
13161316
return 1;
13171317
}
1318-
g_info ("Dropped privileges to user \"%s\" (uid: %d, gid: %d)", drop,
1319-
user_pw->pw_uid, user_pw->pw_gid);
1318+
1319+
g_debug ("Working directory is %s", dir);
13201320
}
13211321

13221322
return 0;

0 commit comments

Comments
 (0)