diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2013-06-20 04:34:10 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2013-06-20 04:34:10 +0000 |
commit | 99774fc7e9c360394ea0b599867aea04de628b02 (patch) | |
tree | da1bf4d5af35506dfd37c37b74d469cbac95fec6 | |
parent | b9340542c34e36e040e5d21c442456bb8ff46015 (diff) |
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).
-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 |