diff options
author | 2013-06-20 04:34:09 +0000 | |
---|---|---|
committer | 2013-06-20 04:34:09 +0000 | |
commit | 87885471f7365310e08f030d9fbef5fb7393e55b (patch) | |
tree | c53c17303944ef4edfbc24a86038d68a4dcb5b8e /gnu/usr.bin/cvs/src | |
parent | fix spnego removal fallout (diff) | |
download | wireguard-openbsd-87885471f7365310e08f030d9fbef5fb7393e55b.tar.xz wireguard-openbsd-87885471f7365310e08f030d9fbef5fb7393e55b.zip |
Move the declaration of `disable_x_prog' outside of a #ifdef AUTH_SERVER_SUPPORT
block where it had been mistakenly put in the first place (in r1.28).
Diffstat (limited to 'gnu/usr.bin/cvs/src')
-rw-r--r-- | gnu/usr.bin/cvs/src/server.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/usr.bin/cvs/src/server.c b/gnu/usr.bin/cvs/src/server.c index fa0a95ae689..8d7114256b8 100644 --- a/gnu/usr.bin/cvs/src/server.c +++ b/gnu/usr.bin/cvs/src/server.c @@ -115,12 +115,12 @@ static char *Pserver_Repos = NULL; CVSROOT/config. */ int system_auth = 1; +# endif /* AUTH_SERVER_SUPPORT */ + /* Should we disable Update-prog/Checkin-prog? Can be changed by CVSROOT/config. */ int disable_x_prog = 0; -# endif /* AUTH_SERVER_SUPPORT */ - /* While processing requests, this buffer accumulates data to be sent to the client, and then once we are in do_cvs_command, we use it |