IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Dec 5, 2006, 12:04:15 PM (20 years ago)
Author:
Paul Price
Message:

Decreasing trace level.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psModules/src/config/pmConfig.c

    r10469 r10483  
    44 *  @author EAM (IfA)
    55 *
    6  *  @version $Revision: 1.61 $ $Name: not supported by cvs2svn $
    7  *  @date $Date: 2006-12-05 04:08:05 $
     6 *  @version $Revision: 1.62 $ $Name: not supported by cvs2svn $
     7 *  @date $Date: 2006-12-05 22:04:15 $
    88 *
    99 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    148148    // find the first existing entry in the path (starting with the bare name)
    149149    realName = psStringCopy (name);
    150     psTrace ("psModules.config", 5, "trying %s\n", realName);
     150    psTrace ("psModules.config", 8, "trying %s\n", realName);
    151151
    152152    int status = stat (realName, &filestat);
    153153    if (status == 0) {
    154         if ((uid == filestat.st_uid) && (filestat.st_mode & S_IRUSR))
     154        if ((uid == filestat.st_uid) && (filestat.st_mode & S_IRUSR)) {
    155155            goto found;
    156         if ((gid == filestat.st_gid) && (filestat.st_mode & S_IRGRP))
     156        }
     157        if ((gid == filestat.st_gid) && (filestat.st_mode & S_IRGRP)) {
    157158            goto found;
    158         if (filestat.st_mode & S_IROTH)
     159        }
     160        if (filestat.st_mode & S_IROTH) {
    159161            goto found;
     162        }
    160163    }
    161164    psFree (realName);
     
    169172        realName = psStringCopy (configPath->data[i]);
    170173        psStringAppend (&realName, "/%s", name);
    171         psTrace ("psModules.config", 5, "trying %s\n", realName);
     174        psTrace ("psModules.config", 8, "trying %s\n", realName);
    172175
    173176        status = stat (realName, &filestat);
    174177        if (status == 0) {
    175             if ((uid == filestat.st_uid) && (filestat.st_mode & S_IRUSR))
     178            if ((uid == filestat.st_uid) && (filestat.st_mode & S_IRUSR)) {
    176179                goto found;
    177             if ((gid == filestat.st_gid) && (filestat.st_mode & S_IRGRP))
     180            }
     181            if ((gid == filestat.st_gid) && (filestat.st_mode & S_IRGRP)) {
    178182                goto found;
    179             if (filestat.st_mode & S_IROTH)
     183            }
     184            if (filestat.st_mode & S_IROTH) {
    180185                goto found;
     186            }
    181187        }
    182188        psFree (realName);
Note: See TracChangeset for help on using the changeset viewer.