build: reenable "syntax-check" rule: sc_const_long_option
authorJim Meyering <meyering@redhat.com>
Mon, 3 Aug 2009 12:32:44 +0000 (08:32 -0400)
committerJim Meyering <meyering@redhat.com>
Mon, 3 Aug 2009 13:14:31 +0000 (15:14 +0200)
* cfg.mk (disable_temporarily): Remove sc_const_long_option.
* daemon/guestfsd.c (main): Declare long_options to be "const".
* fish/fish.c (main): Likewise.
* test-tool/test-tool.c (main): Likewise.

cfg.mk
daemon/guestfsd.c
fish/fish.c
test-tool/test-tool.c

diff --git a/cfg.mk b/cfg.mk
index 5d2f225..e92c34f 100644 (file)
--- a/cfg.mk
+++ b/cfg.mk
@@ -71,7 +71,6 @@ disable_temporarily =                 \
   sc_m4_quote_check                    \
   sc_prohibit_trailing_blank_lines     \
   sc_avoid_ctype_macros                        \
-  sc_const_long_option                 \
   sc_avoid_write                       \
   sc_trailing_blank
 
index 7bd384e..e8fb48f 100644 (file)
@@ -68,7 +68,7 @@ int
 main (int argc, char *argv[])
 {
   static const char *options = "fh:p:?";
-  static struct option long_options[] = {
+  static const struct option long_options[] = {
     { "foreground", 0, 0, 'f' },
     { "help", 0, 0, '?' },
     { "host", 1, 0, 'h' },
index bb0762f..b0d123d 100644 (file)
@@ -127,7 +127,7 @@ int
 main (int argc, char *argv[])
 {
   static const char *options = "a:Df:h::im:nrv?Vx";
-  static struct option long_options[] = {
+  static const struct option long_options[] = {
     { "add", 1, 0, 'a' },
     { "cmd-help", 2, 0, 'h' },
     { "file", 1, 0, 'f' },
index 9617073..f37656a 100644 (file)
@@ -76,7 +76,7 @@ int
 main (int argc, char *argv[])
 {
   static const char *options = "?";
-  static struct option long_options[] = {
+  static const struct option long_options[] = {
     { "help", 0, 0, '?' },
     { "helper", 1, 0, 0 },
     { "qemu", 1, 0, 0 },