]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
spacing; no newline at end of file
authorAndreas Gustafsson <source@isc.org>
Wed, 8 Aug 2001 23:26:58 +0000 (23:26 +0000)
committerAndreas Gustafsson <source@isc.org>
Wed, 8 Aug 2001 23:26:58 +0000 (23:26 +0000)
bin/rndc/win32/os.c

index d5e99998ce8fa31c49f70f13c38ba877100c1671..e085cd3ba0124251aec0f4579000f83479b2cb57 100644 (file)
@@ -15,7 +15,7 @@
  * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: os.c,v 1.1 2001/08/06 05:35:16 mayer Exp $ */
+/* $Id: os.c,v 1.2 2001/08/08 23:26:58 gson Exp $ */
 
 #include <config.h>
 
@@ -54,11 +54,11 @@ safe_create(const char *filename) {
                return (NULL);
        }
 
-       fd = open(filename, O_WRONLY|O_CREAT|O_EXCL, S_IRUSR|S_IWUSR);
+       fd = open(filename, O_WRONLY | O_CREAT | O_EXCL, S_IRUSR | S_IWUSR);
        if (fd == -1)
                return (NULL);
        f = fdopen(fd, "w");
        if (f == NULL)
                close(fd);
        return (f);
-}
\ No newline at end of file
+}