Skip to content

Commit

Permalink
rephrase wal to "write-ahead log" in cli
Browse files Browse the repository at this point in the history
Many users might not know what "WAL" stands for.
This will make it more explicit.
  • Loading branch information
JensRantil authored and kr committed Apr 3, 2016
1 parent 96e8756 commit dca6b1b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions util.c
Original file line number Diff line number Diff line change
Expand Up @@ -99,15 +99,15 @@ usage(int code)
fprintf(stderr, "Use: %s [OPTIONS]\n"
"\n"
"Options:\n"
" -b DIR wal directory\n"
" -b DIR write-ahead log directory\n"
" -f MS fsync at most once every MS milliseconds"
" (use -f0 for \"always fsync\")\n"
" -F never fsync (default)\n"
" -l ADDR listen on address (default is 0.0.0.0)\n"
" -p PORT listen on port (default is " Portdef ")\n"
" -u USER become user and group\n"
" -z BYTES set the maximum job size in bytes (default is %d)\n"
" -s BYTES set the size of each wal file (default is %d)\n"
" -s BYTES set the size of each write-ahead log file (default is %d)\n"
" (will be rounded up to a multiple of 512 bytes)\n"
" -c compact the binlog (default)\n"
" -n do not compact the binlog\n"
Expand Down

0 comments on commit dca6b1b

Please sign in to comment.