Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/netbsd-6]: src/sys/dev/dm Pull up following revision(s) (requested by ha...
details: https://anonhg.NetBSD.org/src/rev/2c23712ace3a
branches: netbsd-6
changeset: 774400:2c23712ace3a
user: martin <martin%NetBSD.org@localhost>
date: Thu Aug 09 07:53:30 2012 +0000
description:
Pull up following revision(s) (requested by haad in ticket #467):
sys/dev/dm/dm_target_stripe.c: revision 1.18
Fix problem reported by jym on current-user@ patch was provided by mhitch@.
diffstat:
sys/dev/dm/dm_target_stripe.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diffs (18 lines):
diff -r 756ab884ed26 -r 2c23712ace3a sys/dev/dm/dm_target_stripe.c
--- a/sys/dev/dm/dm_target_stripe.c Thu Aug 09 06:58:00 2012 +0000
+++ b/sys/dev/dm/dm_target_stripe.c Thu Aug 09 07:53:30 2012 +0000
@@ -1,4 +1,4 @@
-/*$NetBSD: dm_target_stripe.c,v 1.17 2012/01/04 16:05:53 haad Exp $*/
+/*$NetBSD: dm_target_stripe.c,v 1.17.2.1 2012/08/09 07:53:30 martin Exp $*/
/*
* Copyright (c) 2009 The NetBSD Foundation, Inc.
@@ -128,7 +128,7 @@
* Parse a string, containing tokens delimited by white space,
* into an argument vector
*/
- for (ap = argv; ap < &argv[9] &&
+ for (ap = argv; ap <= &argv[9] &&
(*ap = strsep(¶ms, " \t")) != NULL;) {
if (**ap != '\0')
ap++;
Home |
Main Index |
Thread Index |
Old Index