[master] 21030ab Correct function names on diagnostic messages

Federico G. Schwindt fgsch at lodoss.net
Tue Sep 5 01:56:06 CEST 2017


commit 21030ab457fd8e1f6a1ca17ded12b86c8988ee98
Author: Federico G. Schwindt <fgsch at lodoss.net>
Date:   Tue Sep 5 00:38:39 2017 +0100

    Correct function names on diagnostic messages

diff --git a/lib/libvarnishapi/vsm.c b/lib/libvarnishapi/vsm.c
index cf7456b..ebca6f2 100644
--- a/lib/libvarnishapi/vsm.c
+++ b/lib/libvarnishapi/vsm.c
@@ -427,7 +427,8 @@ vsm_refresh_set2(struct vsm *vd, struct vsm_set *vs, struct vsb *vsb)
 		p = e + 1;
 
 		if (av[0] != NULL || ac < 4 || ac > 5) {
-			(void)(vsm_diag(vd, "VSM_Open: bad index (%d/%s)",
+			(void)(vsm_diag(vd,
+			    "vsm_refresh_set2: bad index (%d/%s)",
 			    ac, av[0]));
 			VAV_Free(av);
 			break;
@@ -506,7 +507,8 @@ VSM_Status(struct vsm *vd)
 	if (vd->dfd < 0) {
 		vd->dfd = open(vd->dname, O_RDONLY);
 		if (vd->dfd < 0)
-			(void)vsm_diag(vd, "VSM_Open: Cannot open workdir");
+			(void)vsm_diag(vd,
+			    "VSM_Status: Cannot open workdir");
 		else
 			AZ(fstat(vd->dfd, &vd->dst));
 	}
@@ -710,7 +712,7 @@ VSM_Unmap(struct vsm *vd, struct vsm_fantom *vf)
 	AN(vf->b);
 	vg = vsm_findseg(vd, vf);
 	if (vg == NULL)
-		return (vsm_diag(vd, "VSM_Map: bad fantom"));
+		return (vsm_diag(vd, "VSM_Unmap: bad fantom"));
 	assert(vg->refs > 0);
 	vg->refs--;
 	vf->b = NULL;



More information about the varnish-commit mailing list