Merge branch 'master' of gnunet.org:gnunet
[oweals/gnunet.git] / src / multicast / gnunet-multicast.c
index 5e0e69377e4a57a15756970eb06fa3ca3ed5e25b..b37625988432010a3f41cc788d334d07a8f3f8f5 100644 (file)
@@ -1,6 +1,6 @@
 /*
      This file is part of GNUnet.
-     Copyright (C) 2013 Christian Grothoff (and other contributing authors)
+     Copyright (C) 2013 GNUnet e.V.
 
      GNUnet is free software; you can redistribute it and/or modify
      it under the terms of the GNU General Public License as published
@@ -45,6 +45,8 @@ run (void *cls, char *const *args, const char *cfgfile,
      const struct GNUNET_CONFIGURATION_Handle *cfg)
 {
   /* main code here */
+  puts( gettext_noop ("This command doesn't do anything yet.") );
+  ret = -1;
 }
 
 
@@ -67,7 +69,8 @@ main (int argc, char *const *argv)
 
   ret = (GNUNET_OK ==
         GNUNET_PROGRAM_run (argc, argv, "gnunet-multicast",
-                            gettext_noop ("help text"), options, &run,
+                            gettext_noop ("This command doesn't do anything yet."),
+                            options, &run,
                             NULL)) ? ret : 1;
   GNUNET_free ((void*) argv);
   return ret;