summaryrefslogtreecommitdiffstats
path: root/src/CLI/CLI.cpp
diff options
context:
space:
mode:
authorNikola Pajkovsky <npajkovs@redhat.com>2010-06-30 14:42:48 +0200
committerNikola Pajkovsky <npajkovs@redhat.com>2010-06-30 14:42:48 +0200
commite04fc8effd469803811435111bb22fb5a6db44b8 (patch)
tree2e4e3e24af02c68e608ecc9ea80c28feb494b449 /src/CLI/CLI.cpp
parentb85c61e854bfd80876825970d1d25399590795cd (diff)
parentbe7875678a508b7524465b3a62bef87d57e2a80e (diff)
downloadabrt-e04fc8effd469803811435111bb22fb5a6db44b8.tar.gz
abrt-e04fc8effd469803811435111bb22fb5a6db44b8.tar.xz
abrt-e04fc8effd469803811435111bb22fb5a6db44b8.zip
Merge branch 'master' of ssh://git.fedorahosted.org/git/abrt
Diffstat (limited to 'src/CLI/CLI.cpp')
-rw-r--r--src/CLI/CLI.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/CLI/CLI.cpp b/src/CLI/CLI.cpp
index d882161a..c751bd37 100644
--- a/src/CLI/CLI.cpp
+++ b/src/CLI/CLI.cpp
@@ -44,7 +44,7 @@ static void print_crash(const map_crash_data_t &crash)
char timeloc[256];
int success = strftime(timeloc, 128, "%c", localtime(&time));
if (!success)
- error_msg_and_die("Error while converting time to string.");
+ error_msg_and_die("Error while converting time to string");
printf(_("\tUID : %s\n"
"\tUUID : %s\n"
@@ -212,7 +212,7 @@ int main(int argc, char** argv)
#define SET_OP(newop) \
if (op != -1 && op != newop) \
{ \
- error_msg(_("You must specify exactly one operation.")); \
+ error_msg(_("You must specify exactly one operation")); \
return 1; \
} \
op = newop;