Skip to content

Commit 32b07c6

Browse files
committed
Fix compilation if no Autentication
Update version for tracking
1 parent 5f3c2e9 commit 32b07c6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

esp3d/command.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,8 +118,8 @@ bool COMMAND::isuser(String & cmd_params)
118118
bool COMMAND::execute_command(int cmd,String cmd_params, tpipe output, level_authenticate_type auth_level)
119119
{
120120
bool response = true;
121-
#ifdef AUTHENTICATION_FEATURE
122121
level_authenticate_type auth_type = auth_level;
122+
#ifdef AUTHENTICATION_FEATURE
123123
if (isadmin(cmd_params)) {
124124
auth_type = LEVEL_ADMIN;
125125
LOG("admin identified\r\n");

esp3d/config.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ extern "C" {
186186
#endif
187187
#include "wificonf.h"
188188
//version and sources location
189-
#define FW_VERSION "0.9.100"
189+
#define FW_VERSION "0.9.101"
190190
#define REPOSITORY "https://github.com/luc-github/ESP3D"
191191

192192
typedef enum {

0 commit comments

Comments
 (0)