summaryrefslogtreecommitdiff
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
commit62dfda654ba9a80aa4875ff73fd9170199c745ea (patch)
tree9dfa507b293487f43f019c1a42f0d4168c11017b
parente5b484451a37a9ac940b342d70791b09362070ee (diff)
downloadsamba-62dfda654ba9a80aa4875ff73fd9170199c745ea.tar.gz
Typo spotting.
-rw-r--r--source/lib/snprintf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/lib/snprintf.c b/source/lib/snprintf.c
index f09a8dde071..6e7613a276f 100644
--- a/source/lib/snprintf.c
+++ b/source/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,...)
{