Skip to content

Commit

Permalink
Disable binlog for the next release.
Browse files Browse the repository at this point in the history
  • Loading branch information
kr committed Jan 17, 2009
1 parent a3894f4 commit f1d7aca
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion beanstalkd.c
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ usage(char *msg, char *arg)
"\n"
"Options:\n"
" -d detach\n"
" -b DIR binlog directory\n"
/*" -b DIR binlog directory\n"*/
" -l ADDR listen on address (default is 0.0.0.0)\n"
" -p PORT listen on port (default is 11300)\n"
" -u USER become user and group\n"
Expand Down Expand Up @@ -236,9 +236,11 @@ opts(int argc, char **argv)
case 'u':
user = require_arg("-u", argv[++i]);
break;
/*
case 'b':
binlog_dir = require_arg("-b", argv[++i]);
break;
*/
case 'h':
usage(NULL, NULL);
case 'v':
Expand Down

0 comments on commit f1d7aca

Please sign in to comment.