diff options
author | Florian Obser <florian@cvs.openbsd.org> | 2021-02-27 10:32:30 +0000 |
---|---|---|
committer | Florian Obser <florian@cvs.openbsd.org> | 2021-02-27 10:32:30 +0000 |
commit | 08b6c592d984171748d22f01ddad3ecaa6f83ac0 (patch) | |
tree | ce409b90e953d92c8b0aba2ac02249bb9a8792a6 /usr.sbin | |
parent | 5357575d464f84e73a35279d6c5d04ea0d98c9f3 (diff) |
Path #defines are traditionally prefixed with _PATH.
Pointed out by deraadt
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/unwindctl/unwindctl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/unwindctl/unwindctl.c b/usr.sbin/unwindctl/unwindctl.c index 23f12c4a8aa..32bc7b73624 100644 --- a/usr.sbin/unwindctl/unwindctl.c +++ b/usr.sbin/unwindctl/unwindctl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: unwindctl.c,v 1.26 2019/12/18 09:18:28 florian Exp $ */ +/* $OpenBSD: unwindctl.c,v 1.27 2021/02/27 10:32:29 florian Exp $ */ /* * Copyright (c) 2005 Claudio Jeker <claudio@openbsd.org> @@ -77,7 +77,7 @@ main(int argc, char *argv[]) int ch, column_offset; char *sockname; - sockname = UNWIND_SOCKET; + sockname = _PATH_UNWIND_SOCKET; while ((ch = getopt(argc, argv, "s:")) != -1) { switch (ch) { case 's': |