summaryrefslogtreecommitdiff
path: root/src/utils
diff options
context:
space:
mode:
authorwlemb <wlemb>2003-01-28 05:43:09 +0000
committerwlemb <wlemb>2003-01-28 05:43:09 +0000
commit6b2f34a6b2aa8ccde637eb9a4282001651b476f0 (patch)
treed0e8c347b504ea536fe79b153d11a714f24e3ab8 /src/utils
parent8cc511f4db9715da669a3549f7bf73ae80f2b694 (diff)
downloadgroff-6b2f34a6b2aa8ccde637eb9a4282001651b476f0.tar.gz
* src/utils/indxbib/indxbib.cc (main) [__EMX__]: Fix typo:
s/unline/unlink/.
Diffstat (limited to 'src/utils')
-rw-r--r--src/utils/indxbib/indxbib.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/utils/indxbib/indxbib.cc b/src/utils/indxbib/indxbib.cc
index 9fced937..bd10772c 100644
--- a/src/utils/indxbib/indxbib.cc
+++ b/src/utils/indxbib/indxbib.cc
@@ -1,5 +1,6 @@
// -*- C++ -*-
-/* Copyright (C) 1989-1992, 2000, 2001, 2002 Free Software Foundation, Inc.
+/* Copyright (C) 1989-1992, 2000, 2001, 2002, 2003
+ Free Software Foundation, Inc.
Written by James Clark (jjc@jclark.com)
This file is part of groff.
@@ -286,7 +287,7 @@ int main(int argc, char **argv)
strcat(index_file, INDEX_SUFFIX);
#ifdef HAVE_RENAME
#ifdef __EMX__
- unline(index_file);
+ unlink(index_file);
#endif /* __EMX__ */
if (rename(temp_index_file, index_file) < 0) {
#ifdef __MSDOS__