diff svr-auth.c @ 1538:f20038b513a5

more linting (#58) * const parameter * fix indentation
author François Perrad <francois.perrad@gadz.org>
date Mon, 26 Feb 2018 14:31:15 +0100
parents 6a83b1944432
children 51df3d53b050
line wrap: on
line diff
--- a/svr-auth.c	Mon Feb 26 21:17:13 2018 +0800
+++ b/svr-auth.c	Mon Feb 26 14:31:15 2018 +0100
@@ -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 @@
 
 /* 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;