Index: /branches/binary/server/memcached.c
===================================================================
--- /branches/binary/server/memcached.c (revision 732)
+++ /branches/binary/server/memcached.c (revision 733)
@@ -3300,5 +3300,4 @@
     printf("-p <num>      TCP port number to listen on (default: 11211)\n"
            "-U <num>      UDP port number to listen on (default: 0, off)\n"
-           "-B <num>      binary protocol TCP port number to listen on (default: 0, off)\n"
            "-s <file>     unix socket path to listen on (disables network support)\n"
            "-a <mask>     access mask for unix socket, in octal (default 0700)\n"
@@ -3553,7 +3552,4 @@
             settings.port = atoi(optarg);
             break;
-        case 'B':
-            settings.binport = atoi(optarg);
-            break;
         case 's':
             settings.socketpath = optarg;
@@ -3790,11 +3786,4 @@
         }
 
-        /* Try the binary port. */
-        if(settings.binport > 0) {
-            if(server_socket(settings.binport, binary_prot)) {
-                 fprintf(stderr, "failed to listen to binary protocol\n");
-                    exit(EXIT_FAILURE);
-            }
-        }
         /*
          * initialization order: first create the listening sockets
Index: /branches/binary/server/memcached.h
===================================================================
--- /branches/binary/server/memcached.h (revision 732)
+++ /branches/binary/server/memcached.h (revision 733)
@@ -127,5 +127,4 @@
     int port;
     int udpport;
-    int binport;           /* Port for binary protocol. */
     char *inter;
     int verbose;
