Skip to content

Commit

Permalink
Merge pull request #678 from openziti/feature/remove-sed-runtime-depe…
Browse files Browse the repository at this point in the history
…ndency

Fix for distros not using libsystemd feature
  • Loading branch information
sabedevops committed Jun 13, 2023
2 parents 791d938 + 558fbd7 commit 062f8a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion programs/ziti-edge-tunnel/netif_driver/linux/resolvers.c
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
#include "resolvers.h"
#include "utils.h"

#ifndef EXCLUDE_LIBSYSTEMD_RESOLVER
#define _cleanup_(f) __attribute__((cleanup(f)))
#ifndef EXCLUDE_LIBSYSTEMD_RESOLVER
#define TRY_DL(dl_func) do{if ((dl_func) != 0) goto dl_error;} while(0)
#define RET_ON_FAIL(bool_func) do{if (!(bool_func)) return;} while(0)

Expand Down

0 comments on commit 062f8a2

Please sign in to comment.