summaryrefslogtreecommitdiff
path: root/svr-auth.c
diff options
context:
space:
mode:
Diffstat (limited to 'svr-auth.c')
-rw-r--r--svr-auth.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/svr-auth.c b/svr-auth.c
index 90334e0..59d027e 100644
--- a/svr-auth.c
+++ b/svr-auth.c
@@ -38,7 +38,7 @@
#include "dbrandom.h"
static void authclear(void);
-static int checkusername(char *username, unsigned int userlen);
+static int checkusername(const char *username, unsigned int userlen);
/* initialise the first time for a session, resetting all parameters */
void svr_authinitialise() {
@@ -263,7 +263,7 @@ static int check_group_membership(gid_t check_gid, const char* username, gid_t u
/* Check that the username exists and isn't disallowed (root), and has a valid shell.
* returns DROPBEAR_SUCCESS on valid username, DROPBEAR_FAILURE on failure */
-static int checkusername(char *username, unsigned int userlen) {
+static int checkusername(const char *username, unsigned int userlen) {
char* listshell = NULL;
char* usershell = NULL;