aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndre Klapper <a9016009@gmx.de>2005-01-03 13:35:58 +0800
committerSivaiah Nallagatla <siva@src.gnome.org>2005-01-03 13:35:58 +0800
commita9495bd904247b9d685258652556cd9f337a1e38 (patch)
treeac8bf25573f51a65746ba49568d07edc8360ea67
parentac0c9b32649743274a304e4ff54dce042330a1cd (diff)
downloadgsoc2013-evolution-a9495bd904247b9d685258652556cd9f337a1e38.tar
gsoc2013-evolution-a9495bd904247b9d685258652556cd9f337a1e38.tar.gz
gsoc2013-evolution-a9495bd904247b9d685258652556cd9f337a1e38.tar.bz2
gsoc2013-evolution-a9495bd904247b9d685258652556cd9f337a1e38.tar.lz
gsoc2013-evolution-a9495bd904247b9d685258652556cd9f337a1e38.tar.xz
gsoc2013-evolution-a9495bd904247b9d685258652556cd9f337a1e38.tar.zst
gsoc2013-evolution-a9495bd904247b9d685258652556cd9f337a1e38.zip
Fixing bug 61068 (removing a white space in a string)
2004-12-21 Andre Klapper <a9016009@gmx.de> * tools/evolution-addressbook-export.c: Fixing bug 61068 (removing a white space in a string) svn path=/trunk/; revision=28211
-rw-r--r--addressbook/ChangeLog5
-rw-r--r--addressbook/tools/evolution-addressbook-export.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog
index 3122294aef..3234b0f4e5 100644
--- a/addressbook/ChangeLog
+++ b/addressbook/ChangeLog
@@ -1,3 +1,8 @@
+2004-12-21 Andre Klapper <a9016009@gmx.de>
+
+ * tools/evolution-addressbook-export.c:
+ Fixing bug 61068 (removing a white space in a string).
+
2004-12-23 Sivaiah Nallagatla <snallagatla@novell.com>
Part of merge from offline branch
diff --git a/addressbook/tools/evolution-addressbook-export.c b/addressbook/tools/evolution-addressbook-export.c
index 3a6be69446..070436dc0d 100644
--- a/addressbook/tools/evolution-addressbook-export.c
+++ b/addressbook/tools/evolution-addressbook-export.c
@@ -58,7 +58,7 @@ main (int argc, char **argv)
{"list-addressbook-folders", 'l', POPT_ARG_NONE, &list_folders_mode, 0, N_("List local addressbook folders"),
NULL},
{"format", '\0', POPT_ARG_STRING, &output_format, 0, N_("Show cards as vcard or csv file"), N_("[vcard|csv]")},
- {"async", 'a', POPT_ARG_NONE, &async_mode, 0, N_("Export in asynchronous mode "), NULL},
+ {"async", 'a', POPT_ARG_NONE, &async_mode, 0, N_("Export in asynchronous mode"), NULL},
{"size", '\0', POPT_ARG_INT, &file_size, 0,
N_("The number of cards in one output file in asychronous mode, default size 100."), N_("NUMBER")},
{NULL, '\0', 0, NULL, 0, NULL, NULL}