[master] 8f83087 constify storage ident

Nils Goroll nils.goroll at uplex.de
Sat May 5 08:26:21 UTC 2018


commit 8f83087f333109ab12d82864b8e7ac98c132cf82
Author: Nils Goroll <nils.goroll at uplex.de>
Date:   Sat May 5 10:11:08 2018 +0200

    constify storage ident

diff --git a/bin/varnishd/storage/storage.h b/bin/varnishd/storage/storage.h
index 08f23c9..212142c 100644
--- a/bin/varnishd/storage/storage.h
+++ b/bin/varnishd/storage/storage.h
@@ -119,8 +119,8 @@ struct stevedore {
 	void			*priv;
 
 	VTAILQ_ENTRY(stevedore)	list;
-	char			*ident;
-	char			*vclname;
+	const char		*ident;
+	const char		*vclname;
 };
 
 extern struct stevedore *stv_transient;


More information about the varnish-commit mailing list