Source-Changes-HG archive

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

[src/trunk]: src/usr.sbin/pwd_mkdb Add a missing semicolon. Noted by Tomasz ...



details:   https://anonhg.NetBSD.org/src/rev/09f10f2ba60b
branches:  trunk
changeset: 750685:09f10f2ba60b
user:      snj <snj%NetBSD.org@localhost>
date:      Sun Jan 10 19:04:35 2010 +0000

description:
Add a missing semicolon.  Noted by Tomasz Motyl in PR bin/42603.

diffstat:

 usr.sbin/pwd_mkdb/pwd_mkdb.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r d14d35becefc -r 09f10f2ba60b usr.sbin/pwd_mkdb/pwd_mkdb.c
--- a/usr.sbin/pwd_mkdb/pwd_mkdb.c      Sun Jan 10 17:35:33 2010 +0000
+++ b/usr.sbin/pwd_mkdb/pwd_mkdb.c      Sun Jan 10 19:04:35 2010 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: pwd_mkdb.c,v 1.50 2010/01/10 16:40:00 joerg Exp $      */
+/*     $NetBSD: pwd_mkdb.c,v 1.51 2010/01/10 19:04:35 snj Exp $        */
 
 /*
  * Copyright (c) 2000, 2009 The NetBSD Foundation, Inc.
@@ -90,7 +90,7 @@
  The NetBSD Foundation, Inc.  All rights reserved.\
   Copyright (c) 1991, 1993, 1994\
  The Regents of the University of California.  All rights reserved.");
-__RCSID("$NetBSD: pwd_mkdb.c,v 1.50 2010/01/10 16:40:00 joerg Exp $");
+__RCSID("$NetBSD: pwd_mkdb.c,v 1.51 2010/01/10 19:04:35 snj Exp $");
 #endif /* not lint */
 
 #if HAVE_NBTOOL_CONFIG_H
@@ -657,7 +657,7 @@
                goto on_error;
        close(from_fd);
        if (close(to_fd))
-               goto on_error
+               goto on_error;
        return;
 
 on_error:



Home | Main Index | Thread Index | Old Index