summaryrefslogtreecommitdiff
path: root/source4
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2005-06-16 06:39:41 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:18:14 -0500
commit289845ff77d87ce6dd8bfc03f62432f3868049c2 (patch)
treeee90fa7a980137160e6e9eaacb989ca2eaf99613 /source4
parentbab977dad76e9204278c7afe0bb905cda064f488 (diff)
downloadsamba-289845ff77d87ce6dd8bfc03f62432f3868049c2.tar.gz
samba-289845ff77d87ce6dd8bfc03f62432f3868049c2.tar.bz2
samba-289845ff77d87ce6dd8bfc03f62432f3868049c2.zip
r7627: Fix warning in unused (?) function.
(This used to be commit a4d05988637b4e607c3cdad83bfb1e9cf923b7f0)
Diffstat (limited to 'source4')
-rw-r--r--source4/lib/util_file.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/lib/util_file.c b/source4/lib/util_file.c
index 557baa716d..e02198754d 100644
--- a/source4/lib/util_file.c
+++ b/source4/lib/util_file.c
@@ -115,7 +115,7 @@ read a line from a file with possible \ continuation chars.
Blanks at the start or end of a line are stripped.
The string will be allocated if s2 is NULL
****************************************************************************/
-char *fgets_slash(char *s2,int maxlen,FILE *f)
+char *fgets_slash(char *s2,int maxlen,XFILE *f)
{
char *s=s2;
int len = 0;