summaryrefslogtreecommitdiff
path: root/source3/lib
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2001-12-10 04:15:58 +0000
committerTim Potter <tpot@samba.org>2001-12-10 04:15:58 +0000
commitba57d9a136a315f86eab463a94082f354986e3aa (patch)
tree9123daa00215fcf4501d8afb4d694aec979ef442 /source3/lib
parent216f3ae90881fb1d7301920b9c30f551f24244f3 (diff)
downloadsamba-ba57d9a136a315f86eab463a94082f354986e3aa.tar.gz
samba-ba57d9a136a315f86eab463a94082f354986e3aa.tar.bz2
samba-ba57d9a136a315f86eab463a94082f354986e3aa.zip
Typo spotting.
(This used to be commit 62dfda654ba9a80aa4875ff73fd9170199c745ea)
Diffstat (limited to 'source3/lib')
-rw-r--r--source3/lib/snprintf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/lib/snprintf.c b/source3/lib/snprintf.c
index f09a8dde07..6e7613a276 100644
--- a/source3/lib/snprintf.c
+++ b/source3/lib/snprintf.c
@@ -749,7 +749,7 @@ static void dopr_outch(char *buffer, size_t *currlen, size_t maxlen, char c)
(*currlen)++;
}
-/* yes this really must be a ||. Don't muck wiith this (tridge) */
+/* yes this really must be a ||. Don't muck with this (tridge) */
#if !defined(HAVE_VSNPRINTF) || !defined(HAVE_C99_VSNPRINTF)
int vsnprintf (char *str, size_t count, const char *fmt, va_list args)
{
@@ -757,7 +757,7 @@ static void dopr_outch(char *buffer, size_t *currlen, size_t maxlen, char c)
}
#endif
-/* yes this really must be a ||. Don't muck wiith this (tridge) */
+/* yes this really must be a ||. Don't muck with this (tridge) */
#if !defined(HAVE_SNPRINTF) || !defined(HAVE_C99_SNPRINTF)
int snprintf(char *str,size_t count,const char *fmt,...)
{