about summary refs log tree commit diff
path: root/redo.c
diff options
context:
space:
mode:
Diffstat (limited to 'redo.c')
-rw-r--r--redo.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/redo.c b/redo.c
index 9d543db..781c828 100644
--- a/redo.c
+++ b/redo.c
@@ -201,7 +201,7 @@ redo_ifcreate(char *target)
 static char *
 check_dofile(const char *fmt, ...)
 {
-	char dofile[1024];
+	static char dofile[1024];
 
 	va_list ap;
 	va_start(ap, fmt);
@@ -209,7 +209,7 @@ check_dofile(const char *fmt, ...)
 	va_end(ap);
 
 	if (access (dofile, F_OK) == 0) {
-		return strdup(dofile);
+		return dofile;
 	} else {
 		redo_ifcreate(dofile);
 		return 0;