cmdline: renamed options.stderr to options.log_stderr

On FreeBSD, "stderr" is a macro, and using this name for a struct
member breaks the build.

[mk: renamed _stderr to log_stderr]
This commit is contained in:
Eugeny N Dzhurinsky
2009-07-22 13:40:19 +02:00
committed by Max Kellermann
parent c9d43b4d71
commit bdb1965b50
3 changed files with 6 additions and 6 deletions

View File

@@ -25,7 +25,7 @@
struct options {
gboolean kill;
gboolean daemon;
gboolean stderr;
gboolean log_stderr;
gboolean verbose;
int create_db;
};