]> granicus.if.org Git - sudo/commitdiff
Fix sudo_strnlen() prototype.
authorTodd C. Miller <Todd.Miller@courtesan.com>
Tue, 26 May 2015 20:14:06 +0000 (14:14 -0600)
committerTodd C. Miller <Todd.Miller@courtesan.com>
Tue, 26 May 2015 20:14:06 +0000 (14:14 -0600)
include/sudo_compat.h

index c5a7d4c4241cad6719237167a57788c76d9b9224..4c573db2a9d9be373924c612470a9654786cd34a 100644 (file)
@@ -437,7 +437,7 @@ __dso_public char *sudo_strndup(const char *str, size_t maxlen);
 # define strndup(_a, _b) sudo_strndup((_a), (_b))
 #endif /* HAVE_STRNDUP */
 #ifndef HAVE_STRNLEN
-__dso_public size_t sudo_strnlen(char *str, size_t maxlen);
+__dso_public size_t sudo_strnlen(const char *str, size_t maxlen);
 # undef strnlen
 # define strnlen(_a, _b) sudo_strnlen((_a), (_b))
 #endif /* HAVE_STRNLEN */