From fd011ef559eb587b73f09f19f8ca251008618f19 Mon Sep 17 00:00:00 2001 From: andersen Date: Mon, 14 Jul 2003 19:14:26 +0000 Subject: 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 --- miscutils/crontab.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'miscutils/crontab.c') 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 @@ #define CRONUPDATE "cron.update" #endif #ifndef PATH_VI -#define PATH_VI "/usr/bin/vi" /* location of vi */ +#define PATH_VI "/bin/vi" /* location of vi */ #endif #include "busybox.h" -- cgit v1.2.3-55-g6feb