Merge branch 'master' of gnunet.org:gnunet
[oweals/gnunet.git] / src / multicast / gnunet-multicast.c
index e46d034d8db23395c8fb9dd0f6f35a2404297a32..b37625988432010a3f41cc788d334d07a8f3f8f5 100644 (file)
@@ -1,6 +1,6 @@
 /*
      This file is part of GNUnet.
-     (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
@@ -14,8 +14,8 @@
 
      You should have received a copy of the GNU General Public License
      along with GNUnet; see the file COPYING.  If not, write to the
-     Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-     Boston, MA 02111-1307, USA.
+     Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+     Boston, MA 02110-1301, USA.
 */
 
 /**
@@ -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;