Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions librepo/gpg_gpgme.c
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
*
* We remedy it by choosing the label according to a default file context
* policy (ENABLE_SELINUX macro) or by using a different path supported by
* some GnuPG configurations (DUSE_RUN_GNUPG_USER_SOCKET macro).
* some GnuPG configurations (USE_RUN_GNUPG_USER_SOCKET macro).
*
* Since the agent doesn't clean up its sockets properly, by creating this
* directory we make sure they are in a place that is not causing trouble with
Expand All @@ -71,7 +71,7 @@
static void
lr_gpg_ensure_socket_dir_exists()
{
#ifdef DUSE_RUN_GNUPG_USER_SOCKET
#ifdef USE_RUN_GNUPG_USER_SOCKET
const char *templates[] = { "/run/gnupg", "/run/gnupg/user", "/run/gnupg/user/%ju", NULL };
const mode_t modes[] = { 0755, 0755, 0700, 0 };
#else
Expand Down