diff options
author | Rich Megginson <rmeggins@redhat.com> | 2005-03-09 21:19:54 +0000 |
---|---|---|
committer | Rich Megginson <rmeggins@redhat.com> | 2005-03-09 21:19:54 +0000 |
commit | 828fa4aa95bf17c80e9f57683f5869cd63d22b61 (patch) | |
tree | 2fa92428356876cdc1944cced59a194e2979e172 | |
parent | ae8bac2a32815e92b6691266b722d539f0752c15 (diff) | |
download | ds-828fa4aa95bf17c80e9f57683f5869cd63d22b61.tar.gz ds-828fa4aa95bf17c80e9f57683f5869cd63d22b61.tar.xz ds-828fa4aa95bf17c80e9f57683f5869cd63d22b61.zip |
fix Windows installer breakage - wrong argument to va_start - use fmt instead of s
-rw-r--r-- | ldap/cm/newinstnt/dsinst.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ldap/cm/newinstnt/dsinst.c b/ldap/cm/newinstnt/dsinst.c index 91491dcc..8fda4410 100644 --- a/ldap/cm/newinstnt/dsinst.c +++ b/ldap/cm/newinstnt/dsinst.c @@ -66,7 +66,7 @@ my_snprintf(char *s, size_t size, const char *fmt, ...) int rc; va_list ap; - va_start(ap, s); + va_start(ap, fmt); rc = _vsnprintf(s, size, fmt, ap); va_end(ap); s[size-1] = (char)0; |