From 985743b6a147e8c83d1bdd9e6dd87e465a25869b Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Sat, 28 Oct 2000 07:47:04 +0000 Subject: [PATCH] (setusershell) [HAVE_FSEEKO]: Use fseek0. Patch by Ulrich Drepper. --- lib/getusershell.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/lib/getusershell.c b/lib/getusershell.c index 35f72dbcbd..75163ac26f 100644 --- a/lib/getusershell.c +++ b/lib/getusershell.c @@ -103,7 +103,13 @@ setusershell () if (shellstream == NULL) shellstream = fopen (SHELLS_FILE, "r"); else - fseek (shellstream, 0L, 0); + { +#ifdef HAVE_FSEEKO + fseeko (shellstream, 0, 0); +#else + fseek (shellstream, 0L, 0); +#endif + } } /* Close the shells file. */ -- 2.30.2