diff options
| author | 2019-03-09 13:46:18 +0530 | |
|---|---|---|
| committer | 2019-03-09 13:46:18 +0530 | |
| commit | f77d9bef3d63aeff50b47abc0a2f4c62c97234cb (patch) | |
| tree | a89cc5c7146df75c93235d9aaae9aa9c86f5f530 /src | |
| parent | e13c04b40d6e5c9c36b94fbf457b395f7a06ecba (diff) | |
| download | nnn-f77d9bef3d63aeff50b47abc0a2f4c62c97234cb.tar.gz | |
Rename env var
Diffstat (limited to 'src')
| -rw-r--r-- | src/nnn.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -447,7 +447,7 @@ static const char * const messages[] = { #define NNN_RESTRICT_0B 13 #define NNN_TRASH 14 #ifdef __linux__ -#define NNN_CP_MV_PROG 15 +#define NNN_OPS_PROG 15 #endif static const char * const env_cfg[] = { @@ -467,7 +467,7 @@ static const char * const env_cfg[] = { "NNN_RESTRICT_0B", "NNN_TRASH", #ifdef __linux__ - "NNN_CP_MV_PROG", + "NNN_OPS_PROG", #endif }; @@ -4102,7 +4102,7 @@ int main(int argc, char *argv[]) cfg.restrict0b = 1; #ifdef __linux__ - if (!getenv(env_cfg[NNN_CP_MV_PROG])) { + if (!getenv(env_cfg[NNN_OPS_PROG])) { cp[5] = cp[4]; cp[2] = cp[4] = ' '; |