Version the functions in libsudo_util

This commit is contained in:
Todd C. Miller
2014-07-22 11:26:17 -06:00
parent 127ba1354b
commit 844a285391
29 changed files with 346 additions and 268 deletions

View File

@@ -36,7 +36,7 @@
#ifdef HAVE_LIBINTL_H
/* No need to swap locales in the front end. */
char *
sudo_warn_gettext(const char *msgid)
sudo_warn_gettext_v1(const char *msgid)
{
return gettext(msgid);
}
@@ -44,7 +44,7 @@ sudo_warn_gettext(const char *msgid)
/* No need to swap locales in the front end. */
char *
sudo_warn_strerror(int errnum)
sudo_warn_strerror_v1(int errnum)
{
return strerror(errnum);
}