diff options
author | vapier <vapier@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2005-04-17 07:24:19 +0000 |
---|---|---|
committer | vapier <vapier@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2005-04-17 07:24:19 +0000 |
commit | fbdff4919fafeef3daa6d07dd897a92fcf9ea8ff (patch) | |
tree | 638b47992053b973046bc6e5ba50294702832414 /include | |
parent | 03c64b4fa2ddae66315dac29fc3a477a6818dc1d (diff) | |
download | busybox-w32-fbdff4919fafeef3daa6d07dd897a92fcf9ea8ff.tar.gz busybox-w32-fbdff4919fafeef3daa6d07dd897a92fcf9ea8ff.tar.bz2 busybox-w32-fbdff4919fafeef3daa6d07dd897a92fcf9ea8ff.zip |
import fakeidentd module started by Thomas Lundquist
git-svn-id: svn://busybox.net/trunk/busybox@10123 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'include')
-rw-r--r-- | include/applets.h | 3 | ||||
-rw-r--r-- | include/usage.h | 7 |
2 files changed, 10 insertions, 0 deletions
diff --git a/include/applets.h b/include/applets.h index 90a081550..7771c17a9 100644 --- a/include/applets.h +++ b/include/applets.h | |||
@@ -185,6 +185,9 @@ | |||
185 | #ifdef CONFIG_EXPR | 185 | #ifdef CONFIG_EXPR |
186 | APPLET(expr, expr_main, _BB_DIR_USR_BIN, _BB_SUID_NEVER) | 186 | APPLET(expr, expr_main, _BB_DIR_USR_BIN, _BB_SUID_NEVER) |
187 | #endif | 187 | #endif |
188 | #ifdef CONFIG_FAKEIDENTD | ||
189 | APPLET(fakeidentd, fakeidentd_main, _BB_DIR_USR_SBIN, _BB_SUID_NEVER) | ||
190 | #endif | ||
188 | #ifdef CONFIG_FALSE | 191 | #ifdef CONFIG_FALSE |
189 | APPLET(false, false_main, _BB_DIR_BIN, _BB_SUID_NEVER) | 192 | APPLET(false, false_main, _BB_DIR_BIN, _BB_SUID_NEVER) |
190 | #endif | 193 | #endif |
diff --git a/include/usage.h b/include/usage.h index 6d594dc01..128aee2f5 100644 --- a/include/usage.h +++ b/include/usage.h | |||
@@ -575,6 +575,13 @@ | |||
575 | "\\( and \\) or null; if \\( and \\) are not used, they return the number \n" \ | 575 | "\\( and \\) or null; if \\( and \\) are not used, they return the number \n" \ |
576 | "of characters matched or 0." | 576 | "of characters matched or 0." |
577 | 577 | ||
578 | #define fakeidentd_trivial_usage \ | ||
579 | "[-b ip] [STRING]" | ||
580 | #define fakeidentd_full_usage \ | ||
581 | "Returns a set string to auth requests\n\n"\ | ||
582 | "\t-b\tBind to ip address\n"\ | ||
583 | "\tSTRING\tThe ident answer string (default is nobody)" | ||
584 | |||
578 | #define false_trivial_usage \ | 585 | #define false_trivial_usage \ |
579 | "" | 586 | "" |
580 | #define false_full_usage \ | 587 | #define false_full_usage \ |