summary refs log tree commit diff stats
path: root/src/common/util.h
diff options
context:
space:
mode:
authorPatrick Griffis <tingping@tingping.se>2016-04-13 18:46:20 -0400
committerPatrick Griffis <tingping@tingping.se>2016-04-13 18:47:51 -0400
commit44aa999598af1e798321d595372dac84eaf8a2ba (patch)
tree6ca8df391d0a8e516263616bb0cbbfeec4cc1fd7 /src/common/util.h
parent54c6418d619e1ec96166f9fabb426f011068de99 (diff)
Fix challengeauth lower casing username
Diffstat (limited to 'src/common/util.h')
-rw-r--r--src/common/util.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/util.h b/src/common/util.h
index ba318585..bb377fc8 100644
--- a/src/common/util.h
+++ b/src/common/util.h
@@ -76,7 +76,7 @@ void canonalize_key (char *key);
 int portable_mode (void);
 int unity_mode (void);
 char *encode_sasl_pass_plain (char *user, char *pass);
-char *challengeauth_response (char *username, char *password, char *challenge);
+char *challengeauth_response (const char *username, const char *password, const char *challenge);
 size_t strftime_validated (char *dest, size_t destsize, const char *format, const struct tm *time);
 gsize strftime_utf8 (char *dest, gsize destsize, const char *format, time_t time);
 #endif