diff options
author | Thorsten Horstmann <thorsten.horstmann@web.de> | 2015-02-24 20:43:01 +0800 |
---|---|---|
committer | Thorsten Horstmann <thorsten.horstmann@web.de> | 2015-02-24 20:43:01 +0800 |
commit | fdb7ffa864dea8e1c9efe3532db08b1ccad484dc (patch) | |
tree | 51ecc6a9bee2ce0e98ac90c7057d7ae21879afde /options.h | |
parent | 9abcc7b909b6ff0f173405e73dc7c0c3d093e44a (diff) |
DROPBEAR_ prefix for include guards to avoid collisions
Diffstat (limited to 'options.h')
-rw-r--r-- | options.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -2,8 +2,8 @@ * Copyright (c) 2002,2003 Matt Johnston * All rights reserved. See LICENSE for the license. */ -#ifndef _OPTIONS_H_ -#define _OPTIONS_H_ +#ifndef DROPBEAR_OPTIONS_H_ +#define DROPBEAR_OPTIONS_H_ /* Define compile-time options below - the "#ifndef DROPBEAR_XXX .... #endif" * parts are to allow for commandline -DDROPBEAR_XXX options etc. */ @@ -289,7 +289,7 @@ much traffic. */ /* This is used by the scp binary when used as a client binary. If you're * not using the Dropbear client, you'll need to change it */ -#define _PATH_SSH_PROGRAM "/usr/bin/dbclient" +#define DROPBEAR_PATH_SSH_PROGRAM "/usr/bin/dbclient" /* Whether to log commands executed by a client. This only logs the * (single) command sent to the server, not what a user did in a @@ -337,4 +337,4 @@ be overridden at runtime with -I. 0 disables idle timeouts */ * in sysoptions.h */ #include "sysoptions.h" -#endif /* _OPTIONS_H_ */ +#endif /* DROPBEAR_OPTIONS_H_ */ |