aboutsummaryrefslogtreecommitdiff
path: root/busybox.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2000-08-21 22:46:33 +0000
committerEric Andersen <andersen@codepoet.org>2000-08-21 22:46:33 +0000
commit918507eddaa70b3f75196802b8f905f97bd5f5b6 (patch)
tree83f5bff33a0bb5d9087fdb64ea4e8da3d5e138db /busybox.c
parent851ce895bdf33b95ccbfc67061f8949e36fad196 (diff)
downloadbusybox-918507eddaa70b3f75196802b8f905f97bd5f5b6.tar.gz
Added the 'rdate' command, thanks to Sterling Huxley <sterling@europa.com>.
I added the docs, and made behavior identical to the GNU version. -Erik
Diffstat (limited to 'busybox.c')
-rw-r--r--busybox.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/busybox.c b/busybox.c
index d93fc5185..d4fbb8990 100644
--- a/busybox.c
+++ b/busybox.c
@@ -226,6 +226,9 @@ const struct BB_applet applets[] = {
#ifdef BB_PWD
{"pwd", pwd_main, _BB_DIR_BIN, pwd_usage},
#endif
+#ifdef BB_RDATE
+ {"rdate", rdate_main, _BB_DIR_USR_BIN, rdate_usage},
+#endif
#ifdef BB_REBOOT
{"reboot", reboot_main, _BB_DIR_SBIN, reboot_usage},
#endif