Module Name:    src
Committed By:   jld
Date:           Wed Apr 15 04:19:39 UTC 2009

Modified Files:
        src/usr.bin/ftp: util.c

Log Message:
Another empty-body warning/error, another set of curly braces.  This, and
the last one, appear to affect only the NO_DEBUG (e.g., SMALLPROG) build.


To generate a diff of this commit:
cvs rdiff -u -r1.150 -r1.151 src/usr.bin/ftp/util.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/usr.bin/ftp/util.c
diff -u src/usr.bin/ftp/util.c:1.150 src/usr.bin/ftp/util.c:1.151
--- src/usr.bin/ftp/util.c:1.150	Sun Apr 12 10:18:52 2009
+++ src/usr.bin/ftp/util.c	Wed Apr 15 04:19:39 2009
@@ -1,4 +1,4 @@
-/*	$NetBSD: util.c,v 1.150 2009/04/12 10:18:52 lukem Exp $	*/
+/*	$NetBSD: util.c,v 1.151 2009/04/15 04:19:39 jld Exp $	*/
 
 /*-
  * Copyright (c) 1997-2009 The NetBSD Foundation, Inc.
@@ -64,7 +64,7 @@
 
 #include <sys/cdefs.h>
 #ifndef lint
-__RCSID("$NetBSD: util.c,v 1.150 2009/04/12 10:18:52 lukem Exp $");
+__RCSID("$NetBSD: util.c,v 1.151 2009/04/15 04:19:39 jld Exp $");
 #endif /* not lint */
 
 /*
@@ -755,11 +755,12 @@
 				goto bad_parse_time;
 			else
 				goto cleanup_parse_time;
-		} else
+		} else {
 			DPRINTF("remotemodtime: parsed date `%s' as " LLF
 			    ", %s",
 			    timestr, (LLT)rtime,
 			    rfc2822time(localtime(&rtime)));
+		}
 	} else {
 		if (r == ERROR && code == 500 && features[FEAT_MDTM] == -1)
 			features[FEAT_MDTM] = 0;

Reply via email to