diff options
Diffstat (limited to 'db2/log/log_archive.c')
-rw-r--r-- | db2/log/log_archive.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/db2/log/log_archive.c b/db2/log/log_archive.c index d70d4c64c0..0d6c3f2bea 100644 --- a/db2/log/log_archive.c +++ b/db2/log/log_archive.c @@ -68,7 +68,7 @@ log_archive(logp, listp, flags, db_malloc) * but that's just not possible. */ if (LF_ISSET(DB_ARCH_ABS)) { - errno = 0; + __set_errno(0); if ((pref = getcwd(buf, sizeof(buf))) == NULL) return (errno == 0 ? ENOMEM : errno); } else |