++version

This commit is contained in:
Todd C. Miller
1996-10-07 05:05:33 +00:00
parent 0df08805e0
commit e712f1152c
17 changed files with 42 additions and 42 deletions

View File

@@ -1,5 +1,5 @@
/*
* CU sudo version 1.5.1
* CU sudo version 1.5.2
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -77,12 +77,12 @@ char * sudo_goodpath(path)
return(NULL);
/* we need to be root for the stat */
set_perms(PERM_ROOT);
set_perms(PERM_ROOT, 0);
err = stat(path, &statbuf);
/* discard root perms */
set_perms(PERM_USER);
set_perms(PERM_USER, 0);
/* stat(3) failed */
if (err)