Changeset: 00055a0bccb7 for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=00055a0bccb7
Modified Files:
        clients/mapiclient/stethoscope.c
Branch: default
Log Message:

stethoscope: removed dead code

Triggered by icc complaining about set but not used variables:
Removed dead code left over from cut-&-paste from mclient.c;
stethoscope has no "--language" command line option,
and consequently does not need any code handling it.


diffs (47 lines):

diff --git a/clients/mapiclient/stethoscope.c b/clients/mapiclient/stethoscope.c
--- a/clients/mapiclient/stethoscope.c
+++ b/clients/mapiclient/stethoscope.c
@@ -45,12 +45,6 @@
 # endif
 #endif
 
-enum modes {
-    MAL,
-    SQL
-};
-static enum modes mode = SQL;
-
 #define COUNTERSDEFAULT "ISTest"
 
 static struct {
@@ -325,7 +319,6 @@ main(int argc, char **argv)
        char *dbname = NULL;
        char *user = NULL;
        char *password = NULL;
-       char *language = NULL;
 
        /* some .monetdb properties are used by mclient, perhaps we need them 
as well later */
        struct stat statb;
@@ -390,22 +383,6 @@ main(int argc, char **argv)
                                user = strdup(q);       /* leak */
                        } else if (strcmp(buf, "password") == 0 || strcmp(buf, 
"passwd") == 0) {
                                password = strdup(q);   /* leak */
-                       } else if (strcmp(buf, "language") == 0) {
-                               language = strdup(q);   /* leak */
-                               if (strcmp(language, "sql") == 0) {
-                                       mode = SQL;
-                               } else if (strcmp(language, "mal") == 0) {
-                                       mode = MAL;
-                               } else {
-                                       /* make sure we don't set garbage */
-                                       fprintf(stderr,
-                                                 "%s:%d: unsupported "
-                                                 "language: %s\n",
-                                                 mnstr_name(config),
-                                                 line, q);
-                                       free(language);
-                                       language = NULL;
-                               }
                        }
                }
                mnstr_destroy(config);
_______________________________________________
Checkin-list mailing list
[email protected]
http://mail.monetdb.org/mailman/listinfo/checkin-list

Reply via email to