From d2b669d980bfd0a58e5af042613aa0c4013c4bbb Mon Sep 17 00:00:00 2001 From: obrien Date: Sun, 22 Jun 2008 17:52:57 +0000 Subject: Add an abbreviation for adaptive mode, and document all the abreviations. --- usr.sbin/powerd/powerd.8 | 1 + usr.sbin/powerd/powerd.c | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) (limited to 'usr.sbin/powerd') diff --git a/usr.sbin/powerd/powerd.8 b/usr.sbin/powerd/powerd.8 index af5f299..8ca5e0c 100644 --- a/usr.sbin/powerd/powerd.8 +++ b/usr.sbin/powerd/powerd.8 @@ -47,6 +47,7 @@ utility monitors the system state and sets various power control options accordingly. It offers three modes (maximum, minimum, and adaptive) that can be individually selected while on AC power or batteries. +The modes maximum, minimum, and adaptive may be abbreviated max, min, adp. .Pp Maximum mode chooses the highest performance values. Minimum mode selects the lowest performance values to get the most power diff --git a/usr.sbin/powerd/powerd.c b/usr.sbin/powerd/powerd.c index 9e6ed28..8ecff23 100644 --- a/usr.sbin/powerd/powerd.c +++ b/usr.sbin/powerd/powerd.c @@ -339,7 +339,7 @@ parse_mode(char *arg, int *mode, int ch) *mode = MODE_MIN; else if (strcmp(arg, "maximum") == 0 || strcmp(arg, "max") == 0) *mode = MODE_MAX; - else if (strcmp(arg, "adaptive") == 0) + else if (strcmp(arg, "adaptive") == 0 || strcmp(arg, "adp") == 0) *mode = MODE_ADAPTIVE; else errx(1, "bad option: -%c %s", (char)ch, optarg); -- cgit v1.1