ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/libstatgrab/src/statgrab/statgrab.c
(Generate patch)

Comparing projects/libstatgrab/src/statgrab/statgrab.c (file contents):
Revision 1.12 by ats, Mon Oct 20 22:18:21 2003 UTC vs.
Revision 1.17 by tdb, Mon Jan 19 16:49:23 2004 UTC

# Line 1 | Line 1
1   /*
2   * i-scream central monitoring system
3   * http://www.i-scream.org
4 < * Copyright (C) 2000-2003 i-scream
4 > * Copyright (C) 2000-2004 i-scream
5   *
6   * This program is free software; you can redistribute it and/or
7   * modify it under the terms of the GNU General Public License
# Line 16 | Line 16
16   * You should have received a copy of the GNU General Public License
17   * along with this program; if not, write to the Free Software
18   * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
19 + *
20 + * $Id$
21   */
22  
23   #ifdef HAVE_CONFIG_H
# Line 279 | Line 281 | void populate_fs() {
281                                  die("out of memory");
282  
283                          name = buf;
284 +                        if (strlen(name) == 2 && name[1] == ':')
285 +                                name[1] = '\0';
286                          if (strncmp(name, "/dev/", 5) == 0)
287                                  name += 5;
288                          while ((p = strchr(name, '/')) != NULL)
# Line 606 | Line 610 | int main(int argc, char **argv) {
610          /* We don't care if statgrab_init fails, because we can just display
611             the statistics that can be read as non-root. */
612          statgrab_init();
613 < #ifdef ALLBSD
614 <        if (setegid(getgid()) != 0)
611 <                die("Failed to lose effective group");
612 < #endif
613 >        if (statgrab_drop_privileges() != 0)
614 >                die("Failed to drop setuid/setgid privileges");
615  
616          switch (repeat_mode) {
617          case REPEAT_NONE:

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines