diff options
author | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2015-02-22 05:48:53 +0100 |
---|---|---|
committer | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2015-02-22 06:27:41 +0100 |
commit | 161ea23655c35767a9254fd1617a0c567bc58b10 (patch) | |
tree | 55cb00c9622fab922f9f92b93d8e38b324e86f1b /src/core | |
parent | b87d17618335e703554417803059ac20739bff32 (diff) |
Actually installing root certificates on the system.
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/security/security_context.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/security/security_context.c b/src/core/security/security_context.c index ab3e0762b8..fd8baff539 100644 --- a/src/core/security/security_context.c +++ b/src/core/security/security_context.c @@ -61,9 +61,9 @@ "SHA256:AES256-SHA256" #ifndef INSTALL_PREFIX -static const char *installed_roots_path = "/etc/grpc/roots.pem"; +static const char *installed_roots_path = "/usr/share/grpc/roots.pem"; #else -static const char *installed_roots_path = INSTALL_PREFIX "/etc/grpc/roots.pem"; +static const char *installed_roots_path = INSTALL_PREFIX "/share/grpc/roots.pem"; #endif /* -- Common methods. -- */ |