From 1836493f67f1ff56f98e3baee82c5ea12e77bf29 Mon Sep 17 00:00:00 2001 From: John Ericson Date: Wed, 3 Jul 2024 11:15:56 -0400 Subject: [PATCH] Ident some CPP in nix daemon Makes it easier for me to read. (cherry picked from commit a09360400bc0f43e865273ba1ccb2b513d8a962e) --- src/nix/daemon.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/nix/daemon.cc b/src/nix/daemon.cc index af428018a..99104f513 100644 --- a/src/nix/daemon.cc +++ b/src/nix/daemon.cc @@ -209,9 +209,9 @@ static PeerInfo getPeerInfo(int remote) #elif defined(LOCAL_PEERCRED) -#if !defined(SOL_LOCAL) -#define SOL_LOCAL 0 -#endif +# if !defined(SOL_LOCAL) +# define SOL_LOCAL 0 +# endif xucred cred; socklen_t credLen = sizeof(cred);