summaryrefslogtreecommitdiff
path: root/usr.sbin/apm
diff options
context:
space:
mode:
authorabs <abs@NetBSD.org>1998-11-13 22:44:17 +0000
committerabs <abs@NetBSD.org>1998-11-13 22:44:17 +0000
commitb0ebb38178755b26aced07ae7769c6ee692cea2d (patch)
tree33ddd40a21dc311e5ee1621c5034dfce6ac8a0e0 /usr.sbin/apm
parentbe4fc8e1b91763c32d594dfa5bd2bc80c2555eb2 (diff)
momentarily -> in a moment, to avoid ambiguity.
Diffstat (limited to 'usr.sbin/apm')
-rw-r--r--usr.sbin/apm/apm.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/usr.sbin/apm/apm.c b/usr.sbin/apm/apm.c
index f3448f81afe..2185fffd82a 100644
--- a/usr.sbin/apm/apm.c
+++ b/usr.sbin/apm/apm.c
@@ -1,4 +1,4 @@
-/* $NetBSD: apm.c,v 1.6 1998/07/18 05:04:39 lukem Exp $ */
+/* $NetBSD: apm.c,v 1.7 1998/11/13 22:44:17 abs Exp $ */
/*-
* Copyright (c) 1996 The NetBSD Foundation, Inc.
@@ -255,9 +255,9 @@ main(int argc, char *argv[])
APM_IOC_SUSPEND : APM_IOC_STANDBY, 0) == -1)
err(1, "cannot enter requested power state");
if (action == SUSPEND)
- printf("System will enter suspend mode momentarily.\n");
+ printf("System will enter suspend mode in a moment.\n");
else
- printf("System will enter standby mode momentarily.\n");
+ printf("System will enter standby mode in a moment.\n");
exit(0);
} else if (fd == -1)
err(1, "cannot contact APM daemon at socket " _PATH_APM_SOCKET);
@@ -298,10 +298,10 @@ main(int argc, char *argv[])
}
switch (reply.newstate) {
case SUSPEND:
- printf("System will enter suspend mode momentarily.\n");
+ printf("System will enter suspend mode in a moment.\n");
break;
case STANDBY:
- printf("System will enter standby mode momentarily.\n");
+ printf("System will enter standby mode in a moment.\n");
break;
default:
break;