diff options
author | Bernhard Reutner-Fischer | 2007-04-05 13:16:39 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer | 2007-04-05 13:16:39 +0000 |
commit | 00c2c4868a5bd90fe36beaf9236f23f60cd5e8e1 (patch) | |
tree | 2c022b73bda2262e3bd8e6926e8759d2339a7b2b /include | |
parent | 45aebfd32d30de492c6c714cd5b6a08ae4a53867 (diff) | |
download | busybox-00c2c4868a5bd90fe36beaf9236f23f60cd5e8e1.zip busybox-00c2c4868a5bd90fe36beaf9236f23f60cd5e8e1.tar.gz |
- clean up addgroup, fix adding users to existing groups and make it optional (Tito)
Diffstat (limited to 'include')
-rw-r--r-- | include/usage.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/usage.h b/include/usage.h index f4edf05..c729532 100644 --- a/include/usage.h +++ b/include/usage.h @@ -12,9 +12,9 @@ #define __BB_USAGE_H__ #define addgroup_trivial_usage \ - "[-g GID] group_name [user_name]" + "[-g GID]"USE_FEATURE_ADDUSER_TO_GROUP(" [user_name]")" group_name" #define addgroup_full_usage \ - "Add a group to the system" \ + "Add a group to the system"USE_FEATURE_ADDUSER_TO_GROUP(" or add an user to a group") \ "\n\nOptions:\n" \ " -g GID Specify gid" |