summaryrefslogtreecommitdiffstats
path: root/sesman/env.h
diff options
context:
space:
mode:
Diffstat (limited to 'sesman/env.h')
-rw-r--r--sesman/env.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/sesman/env.h b/sesman/env.h
index 50473a01..a7156508 100644
--- a/sesman/env.h
+++ b/sesman/env.h
@@ -33,12 +33,12 @@
*
* @brief Creates vnc password file
* @param filename VNC password file name
- * @param password The password to be encrypte
+ * @param password The password to be encrypted
* @return 0 on success, 1 on error
*
*/
int DEFAULT_CC
-env_check_password_file(char* filename, char* password);
+env_check_password_file(const char *filename, const char *password);
/**
*
@@ -50,7 +50,7 @@ env_check_password_file(char* filename, char* password);
*
*/
int DEFAULT_CC
-env_set_user(char* username, char* passwd_file, int display,
- struct list *env_names, struct list* env_values);
+env_set_user(const char *username, char **passwd_file, int display,
+ const struct list *env_names, const struct list *env_values);
#endif