aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGlenn L McGrath <bug1@ihug.co.nz>2003-03-30 09:38:40 +0000
committerGlenn L McGrath <bug1@ihug.co.nz>2003-03-30 09:38:40 +0000
commit9a52bb6878ff9cf6aca9f834cdc8406f6e74d646 (patch)
tree12eb04522f17b817f0a068782c7a567cfba62522
parent30b47df86be1b7be99dc0987c3f397f09086bd6e (diff)
downloadbusybox-9a52bb6878ff9cf6aca9f834cdc8406f6e74d646.tar.gz
Group common string
-rw-r--r--editors/sed.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/editors/sed.c b/editors/sed.c
index 13155a97e..c03924917 100644
--- a/editors/sed.c
+++ b/editors/sed.c
@@ -65,7 +65,7 @@ extern char *optarg; /* ditto */
/* options */
static int be_quiet = 0;
-
+static const char bad_format_in_subst[] = "bad format in substitution expression";
typedef struct sed_cmd_s {
/* Order by alignment requirements */
@@ -190,7 +190,7 @@ static int parse_regex_delim(const char *cmdstr, char **match, char **replace)
/* verify that the 's' is followed by something. That something
* (typically a 'slash') is now our regexp delimiter... */
if (*cmdstr == '\0')
- bb_error_msg_and_die("bad format in substitution expression");
+ bb_error_msg_and_die(bad_format_in_subst);
else
delimiter = *cmdstr_ptr;
@@ -199,7 +199,7 @@ static int parse_regex_delim(const char *cmdstr, char **match, char **replace)
/* save the match string */
idx = index_of_next_unescaped_regexp_delim(delimiter, cmdstr_ptr);
if (idx == -1) {
- bb_error_msg_and_die("bad format in substitution expression");
+ bb_error_msg_and_die(bad_format_in_subst);
}
*match = bb_xstrndup(cmdstr_ptr, idx);
@@ -207,7 +207,7 @@ static int parse_regex_delim(const char *cmdstr, char **match, char **replace)
cmdstr_ptr += idx + 1;
idx = index_of_next_unescaped_regexp_delim(delimiter, cmdstr_ptr);
if (idx == -1) {
- bb_error_msg_and_die("bad format in substitution expression");
+ bb_error_msg_and_die(bad_format_in_subst);
}
*replace = bb_xstrndup(cmdstr_ptr, idx);