diff options
author | Mike Hommey <mh@glandium.org> | 2004-10-28 09:07:41 +0000 |
---|---|---|
committer | Mike Hommey <mh@glandium.org> | 2004-10-28 09:07:41 +0000 |
commit | 9705f1a5e858108d21a0128556f42b25d16833cd (patch) | |
tree | f819e7482d433f8bf5da005695c79189dd5ce527 /xmlcatalog.c | |
parent | 0732be88d054db33fa0ca479eab9988c8e6be42e (diff) | |
download | libxml2-upstream/2.6.15.tar.gz |
Load /tmp/tmp.SgII7T/libxml2-2.6.15 intoupstream/2.6.15
packages/libxml2/branches/upstream/current.
Diffstat (limited to 'xmlcatalog.c')
-rw-r--r-- | xmlcatalog.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/xmlcatalog.c b/xmlcatalog.c index 4c30d75..0597e88 100644 --- a/xmlcatalog.c +++ b/xmlcatalog.c @@ -307,6 +307,7 @@ static void usershell(void) { * * ************************************************************************/ static void usage(const char *name) { + /* split into 2 printf's to avoid overly long string (gcc warning) */ printf("\ Usage : %s [options] catalogfile entities...\n\ \tParse the catalog file and query it for the entities\n\ @@ -314,13 +315,14 @@ Usage : %s [options] catalogfile entities...\n\ \t--shell : run a shell allowing interactive queries\n\ \t--create : create a new catalog\n\ \t--add 'type' 'orig' 'replace' : add an XML entry\n\ -\t--add 'entry' : add an SGML entry\n\ +\t--add 'entry' : add an SGML entry\n", name); + printf("\ \t--del 'values' : remove values\n\ \t--noout: avoid dumping the result on stdout\n\ \t used with --add or --del, it saves the catalog changes\n\ \t and with --sgml it automatically updates the super catalog\n\ \t--no-super-update: do not update the SGML super catalog\n\ -\t-v --verbose : provide debug informations\n", name); +\t-v --verbose : provide debug informations\n"); } int main(int argc, char **argv) { int i; |