Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/netbsd-1-6]: src/usr.sbin/etcupdate Pull up revisions 1.7-1.8 (requested...
details: https://anonhg.NetBSD.org/src/rev/9c5a5823d768
branches: netbsd-1-6
changeset: 529843:9c5a5823d768
user: jmc <jmc%NetBSD.org@localhost>
date: Sun Jan 05 08:29:42 2003 +0000
description:
Pull up revisions 1.7-1.8 (requested by jmmv in ticket #1050)
Fix a typo in the yesno() function: add a missing question mark.
diffstat:
usr.sbin/etcupdate/etcupdate | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diffs (20 lines):
diff -r bf1de49e9ba0 -r 9c5a5823d768 usr.sbin/etcupdate/etcupdate
--- a/usr.sbin/etcupdate/etcupdate Sun Jan 05 08:25:42 2003 +0000
+++ b/usr.sbin/etcupdate/etcupdate Sun Jan 05 08:29:42 2003 +0000
@@ -1,6 +1,6 @@
#!/bin/sh
#
-# $NetBSD: etcupdate,v 1.3.2.3 2002/10/13 23:31:01 lukem Exp $
+# $NetBSD: etcupdate,v 1.3.2.4 2003/01/05 08:29:42 jmc Exp $
#
# Copyright (c) 2001 The NetBSD Foundation, Inc.
# All rights reserved.
@@ -95,7 +95,7 @@
yesno() {
# $* = message to display
- echo -n "${*} (y/[n]) "
+ echo -n "${*}? (y/[n]) "
read ANSWER
case "${ANSWER}" in
y|Y)
Home |
Main Index |
Thread Index |
Old Index