~ubuntu-branches/ubuntu/jaunty/live-installer/jaunty

« back to all changes in this revision

Viewing changes to src/print-inodes.c

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Baumann, Otavio Salvador, Daniel Baumann, Updated translations
  • Date: 2007-09-18 20:16:00 UTC
  • Revision ID: james.westby@ubuntu.com-20070918201600-t72tllart9p0d1ug
Tags: 2
[ Otavio Salvador ]
* Fix copy of files with spaces on their names.
* Mount udev /dev on /target otherwise grub-installer fails.

[ Daniel Baumann ]
* Added myself to uploaders.

[ Updated translations ]
* Catalan (ca.po) by Jordi Mallach
* Hungarian (hu.po) by SZERVÁC Attila
* Italian (it.po) by Stefano Canepa
* Lithuanian (lt.po) by K#stutis Bili#nas
* Slovak (sk.po) by Peter Mann

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*  Copyright (C) 2007 O.S. Systems */
 
2
/*  Copyright (C) 2007 Otavio Salvador <otavio@debian.org> */
 
3
 
 
4
/*  This program is free software; you can redistribute it and/or modify */
 
5
/*  it under the terms of the GNU General Public License as published by */
 
6
/*  the Free Software Foundation; either version 2 of the License, or */
 
7
/*  (at your option) any later version. */
 
8
 
 
9
/*  This program is distributed in the hope that it will be useful, */
 
10
/*  but WITHOUT ANY WARRANTY; without even the implied warranty of */
 
11
/*  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the */
 
12
/*  GNU General Public License for more details. */
 
13
 
 
14
/*  You should have received a copy of the GNU General Public License along */
 
15
/*  with this program; if not, write to the Free Software Foundation, Inc., */
 
16
/*  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */
 
17
 
 
18
#include <config.h>
 
19
 
 
20
#include <stdio.h>
 
21
#include <sys/statfs.h>
 
22
 
 
23
int main(int argc, char** argv)
 
24
{
 
25
  struct statfs stat;
 
26
  
 
27
  if (argc != 2) {
 
28
    printf("Wrong number of arguments, use: print-inodes mount-point\n");
 
29
    return 1;
 
30
  }
 
31
 
 
32
  if (statfs(argv[1], &stat) != 0) {
 
33
    perror("statfs has failed! ");
 
34
    return 1;
 
35
  }
 
36
 
 
37
  printf("%ld\n", stat.f_files);
 
38
 
 
39
  return 0;
 
40
}