From 1f58be423d01f1cdf5ea58ca19d162a108f49d46 Mon Sep 17 00:00:00 2001 From: Tatsuhiro Tsujikawa Date: Sun, 8 Jun 2014 21:05:36 +0900 Subject: [PATCH] nghttpx: Use nullptr instead of 0 --- src/shrpx.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shrpx.cc b/src/shrpx.cc index 73ddbb01..8924d017 100644 --- a/src/shrpx.cc +++ b/src/shrpx.cc @@ -421,7 +421,7 @@ void fill_default_config() mod_config()->backend_ipv4 = false; mod_config()->backend_ipv6 = false; mod_config()->tty = isatty(fileno(stderr)); - mod_config()->cert_tree = 0; + mod_config()->cert_tree = nullptr; mod_config()->downstream_http_proxy_userinfo = nullptr; mod_config()->downstream_http_proxy_host = nullptr; mod_config()->downstream_http_proxy_port = 0;