Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-3]: src/sbin/veriexecctl Pull up revision 1.10 (requested by elad...



details:   https://anonhg.NetBSD.org/src/rev/173957205eb2
branches:  netbsd-3
changeset: 576143:173957205eb2
user:      tron <tron%NetBSD.org@localhost>
date:      Fri Jun 10 15:13:52 2005 +0000

description:
Pull up revision 1.10 (requested by elad in ticket #389):
Remove leftovers from Vexec.

diffstat:

 sbin/veriexecctl/veriexecctl.c |  14 +++++++-------
 1 files changed, 7 insertions(+), 7 deletions(-)

diffs (53 lines):

diff -r fca5b9545ae0 -r 173957205eb2 sbin/veriexecctl/veriexecctl.c
--- a/sbin/veriexecctl/veriexecctl.c    Fri Jun 10 15:12:18 2005 +0000
+++ b/sbin/veriexecctl/veriexecctl.c    Fri Jun 10 15:13:52 2005 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: veriexecctl.c,v 1.5.6.4 2005/06/10 15:12:11 tron Exp $ */
+/*     $NetBSD: veriexecctl.c,v 1.5.6.5 2005/06/10 15:13:52 tron Exp $ */
 
 /*-
  * Copyright 2005 Elad Efrat <elad%bsd.org.il@localhost>
@@ -49,7 +49,7 @@
 
 extern struct veriexec_params params; /* in veriexecctl_parse.y */
 extern char *filename; /* in veriexecctl_conf.l */
-int gfd, verbose = 0, no_mem = 0, phase;
+int gfd, verbose = 0, phase;
 size_t line;
 
 /*
@@ -72,10 +72,10 @@
        return fdopen(lfd, "r");
 }
 
-struct vexec_up *
+struct veriexec_up *
 dev_lookup(dev_t d)
 {
-       struct vexec_up *p;
+       struct veriexec_up *p;
 
        CIRCLEQ_FOREACH(p, &params_list, vu_list)
                if (p->vu_param.dev == d)
@@ -84,10 +84,10 @@
        return NULL;
 }
 
-struct vexec_up *
+struct veriexec_up *
 dev_add(dev_t d)
 {
-       struct vexec_up *up;
+       struct veriexec_up *up;
 
        if ((up = calloc((size_t)1, sizeof(*up))) == NULL)
                err(1, "No memory");
@@ -108,7 +108,7 @@
                printf("Phase 1: Calculating hash table sizes:\n");
 
        while (!CIRCLEQ_EMPTY(&params_list)) {
-               struct vexec_up *vup;
+               struct veriexec_up *vup;
 
                vup = CIRCLEQ_FIRST(&params_list);
 



Home | Main Index | Thread Index | Old Index