]> git.sur5r.net Git - openldap/commitdiff
Fix typo in previous commit
authorHoward Chu <hyc@openldap.org>
Tue, 18 Dec 2001 02:55:38 +0000 (02:55 +0000)
committerHoward Chu <hyc@openldap.org>
Tue, 18 Dec 2001 02:55:38 +0000 (02:55 +0000)
libraries/liblutil/utils.c

index a3008a38d5aa106afc54202e669df8f40f88b863..089328aab493b6eaef6c4627dd237a987f7c9cea 100644 (file)
@@ -37,7 +37,7 @@ int mkstemp( char * template )
 #ifdef HAVE_MKTEMP
        return open ( mktemp ( template ), O_RDWR|O_CREAT|O_EXCL, 0600 );
 #else
-       return -1
+       return -1;
 #endif
 }
 #endif