projects
/
oweals
/
busybox.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
96916b7
)
Patch from Lars Kellogg-Stedman:
author
Eric Andersen
<andersen@codepoet.org>
Mon, 14 Jul 2003 19:14:26 +0000
(19:14 -0000)
committer
Eric Andersen
<andersen@codepoet.org>
Mon, 14 Jul 2003 19:14:26 +0000
(19:14 -0000)
Busybox vi is installed in /bin/vi, but crontab was looking for
/usr/bin/vi. This patch makes crontab look for /bin/vi instead.
miscutils/crontab.c
patch
|
blob
|
history
diff --git
a/miscutils/crontab.c
b/miscutils/crontab.c
index c6c33ace9a0607917517cd74e8ef405cc85b67f6..6b9446464eb5707c5f3896415ce51c8877052e3c 100644
(file)
--- 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"