diff options
Diffstat (limited to 'src/relocation.c')
-rw-r--r-- | src/relocation.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/relocation.c b/src/relocation.c index 586d1ba..a86530d 100644 --- a/src/relocation.c +++ b/src/relocation.c @@ -24,7 +24,7 @@ * @return 0 on success, -1 on error */ int replace_text(char *original, const char *target, const char *replacement, unsigned flags) { - char buffer[OMC_BUFSIZ]; + char buffer[STASIS_BUFSIZ]; char *pos = original; char *match = NULL; size_t original_len = strlen(original); @@ -104,7 +104,7 @@ int replace_text(char *original, const char *target, const char *replacement, un */ int file_replace_text(const char* filename, const char* target, const char* replacement, unsigned flags) { int result; - char buffer[OMC_BUFSIZ]; + char buffer[STASIS_BUFSIZ]; char tempfilename[] = "tempfileXXXXXX"; FILE *fp; FILE *tfp; |