comparison options.h @ 1046:b8f4b7027191 coverity

merge
author Matt Johnston <matt@ucc.asn.au>
date Tue, 24 Feb 2015 22:48:34 +0800
parents deed0571cacc
children 2fa71c3b2827 1e486f368ec3
comparison
equal deleted inserted replaced
1014:37c510c2ac7c 1046:b8f4b7027191
1 /* Dropbear SSH 1 /* Dropbear SSH
2 * Copyright (c) 2002,2003 Matt Johnston 2 * Copyright (c) 2002,2003 Matt Johnston
3 * All rights reserved. See LICENSE for the license. */ 3 * All rights reserved. See LICENSE for the license. */
4 4
5 #ifndef _OPTIONS_H_ 5 #ifndef DROPBEAR_OPTIONS_H_
6 #define _OPTIONS_H_ 6 #define DROPBEAR_OPTIONS_H_
7 7
8 /* Define compile-time options below - the "#ifndef DROPBEAR_XXX .... #endif" 8 /* Define compile-time options below - the "#ifndef DROPBEAR_XXX .... #endif"
9 * parts are to allow for commandline -DDROPBEAR_XXX options etc. */ 9 * parts are to allow for commandline -DDROPBEAR_XXX options etc. */
10 10
11 /* IMPORTANT: Many options will require "make clean" after changes */ 11 /* IMPORTANT: Many options will require "make clean" after changes */
287 #define SFTPSERVER_PATH "/usr/libexec/sftp-server" 287 #define SFTPSERVER_PATH "/usr/libexec/sftp-server"
288 #endif 288 #endif
289 289
290 /* This is used by the scp binary when used as a client binary. If you're 290 /* This is used by the scp binary when used as a client binary. If you're
291 * not using the Dropbear client, you'll need to change it */ 291 * not using the Dropbear client, you'll need to change it */
292 #define _PATH_SSH_PROGRAM "/usr/bin/dbclient" 292 #define DROPBEAR_PATH_SSH_PROGRAM "/usr/bin/dbclient"
293 293
294 /* Whether to log commands executed by a client. This only logs the 294 /* Whether to log commands executed by a client. This only logs the
295 * (single) command sent to the server, not what a user did in a 295 * (single) command sent to the server, not what a user did in a
296 * shell/sftp session etc. */ 296 * shell/sftp session etc. */
297 /* #define LOG_COMMANDS */ 297 /* #define LOG_COMMANDS */
335 335
336 /* Some other defines (that mostly should be left alone) are defined 336 /* Some other defines (that mostly should be left alone) are defined
337 * in sysoptions.h */ 337 * in sysoptions.h */
338 #include "sysoptions.h" 338 #include "sysoptions.h"
339 339
340 #endif /* _OPTIONS_H_ */ 340 #endif /* DROPBEAR_OPTIONS_H_ */