diff options
author | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2003-07-14 19:14:26 +0000 |
---|---|---|
committer | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2003-07-14 19:14:26 +0000 |
commit | fd011ef559eb587b73f09f19f8ca251008618f19 (patch) | |
tree | 3e8522e0668b33b9e94d6a07069127dd161d788c /miscutils/crontab.c | |
parent | 713a2c943ec1f7c3511e202eb637d7a63b4436d5 (diff) | |
download | busybox-w32-fd011ef559eb587b73f09f19f8ca251008618f19.tar.gz busybox-w32-fd011ef559eb587b73f09f19f8ca251008618f19.tar.bz2 busybox-w32-fd011ef559eb587b73f09f19f8ca251008618f19.zip |
Patch from Lars Kellogg-Stedman:
Busybox vi is installed in /bin/vi, but crontab was looking for
/usr/bin/vi. This patch makes crontab look for /bin/vi instead.
git-svn-id: svn://busybox.net/trunk/busybox@7054 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'miscutils/crontab.c')
-rw-r--r-- | miscutils/crontab.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miscutils/crontab.c b/miscutils/crontab.c index c6c33ace9..6b9446464 100644 --- a/miscutils/crontab.c +++ b/miscutils/crontab.c | |||
@@ -37,7 +37,7 @@ | |||
37 | #define CRONUPDATE "cron.update" | 37 | #define CRONUPDATE "cron.update" |
38 | #endif | 38 | #endif |
39 | #ifndef PATH_VI | 39 | #ifndef PATH_VI |
40 | #define PATH_VI "/usr/bin/vi" /* location of vi */ | 40 | #define PATH_VI "/bin/vi" /* location of vi */ |
41 | #endif | 41 | #endif |
42 | 42 | ||
43 | #include "busybox.h" | 43 | #include "busybox.h" |