Source-Changes-HG archive

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

[src/trunk]: src/sys/kern Prefer C comments instead of C++ like comments



details:   https://anonhg.NetBSD.org/src/rev/52540fc21bad
branches:  trunk
changeset: 545546:52540fc21bad
user:      manu <manu%NetBSD.org@localhost>
date:      Thu Apr 10 19:38:26 2003 +0000

description:
Prefer C comments instead of C++ like comments

diffstat:

 sys/kern/kern_exec.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r f527262d62a4 -r 52540fc21bad sys/kern/kern_exec.c
--- a/sys/kern/kern_exec.c      Thu Apr 10 19:06:04 2003 +0000
+++ b/sys/kern/kern_exec.c      Thu Apr 10 19:38:26 2003 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: kern_exec.c,v 1.165 2003/02/01 06:23:43 thorpej Exp $  */
+/*     $NetBSD: kern_exec.c,v 1.166 2003/04/10 19:38:26 manu Exp $     */
 
 /*-
  * Copyright (C) 1993, 1994, 1996 Christopher G. Demetriou
@@ -33,7 +33,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: kern_exec.c,v 1.165 2003/02/01 06:23:43 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: kern_exec.c,v 1.166 2003/04/10 19:38:26 manu Exp $");
 
 #include "opt_ktrace.h"
 #include "opt_syscall_debug.h"
@@ -410,7 +410,7 @@
        /* see if we can run it. */
 #ifdef VERIFIED_EXEC
         if ((error = check_exec(p, &pack, 1)) != 0)
-        //if ((error = check_exec(p, &pack, 0)) != 0)
+        /* if ((error = check_exec(p, &pack, 0)) != 0) */
 #else 
         if ((error = check_exec(p, &pack)) != 0)
 #endif



Home | Main Index | Thread Index | Old Index