Removed the backtrace stuff. It wasn't producing traces that were useful.
[citadel.git] / citadel / server_main.c
index 33fdc33bcca13daed5bfa5ccf6a778dcdad08e63..4e6ca9627af2991945c3de394bf4c6e22b35afae 100644 (file)
@@ -100,7 +100,7 @@ int main(int argc, char **argv) {
        syslog(LOG_INFO, "%s", libcitadel_version_string());
 
        /* parse command-line arguments */
-       while ((a=getopt(argc, argv, "cl:dh:x:t:B:Dru:s:b:")) != EOF) switch(a) {
+       while ((a=getopt(argc, argv, "cl:dh:x:t:B:Dru:s:")) != EOF) switch(a) {
 
                // test this binary for compatibility and exit
                case 'c':
@@ -169,10 +169,6 @@ int main(int argc, char **argv) {
                        sanity_diag_mode = atoi(optarg);
                        break;
 
-               case 'b':
-                       backtrace_filename = strdup(optarg);
-                       break;
-
                // any other parameter makes it crash and burn
                default:
                        fprintf(stderr, "citserver: usage: "