summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2005-06-27 16:00:57 +0000
committerAndy Polyakov <appro@openssl.org>2005-06-27 16:00:57 +0000
commit84c881d0b5657b869198be4d2b43e83f3fe48cd3 (patch)
tree0ad1df8d32df0232e09f24cdb09d9c2499f1fe32
parentf25209267f155f8954a35d979df4f7f776f50142 (diff)
Fix typos in apps/apps.c.
-rw-r--r--apps/apps.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/apps/apps.c b/apps/apps.c
index 9157cdfcdc..d646caa353 100644
--- a/apps/apps.c
+++ b/apps/apps.c
@@ -1591,8 +1591,9 @@ int rotate_serial(char *serialfile, char *new_suffix, char *old_suffix)
{
if (errno != ENOENT
#ifdef ENOTDIR
- && errno != ENOTDIR)
+ && errno != ENOTDIR
#endif
+ )
goto err;
}
else
@@ -1893,8 +1894,9 @@ int rotate_index(char *dbfile, char *new_suffix, char *old_suffix)
{
if (errno != ENOENT
#ifdef ENOTDIR
- && errno != ENOTDIR)
+ && errno != ENOTDIR
#endif
+ )
goto err;
}
else
@@ -1929,8 +1931,9 @@ int rotate_index(char *dbfile, char *new_suffix, char *old_suffix)
{
if (errno != ENOENT
#ifdef ENOTDIR
- && errno != ENOTDIR)
+ && errno != ENOTDIR
#endif
+ )
goto err;
}
else