IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 10433


Ignore:
Timestamp:
Dec 4, 2006, 11:23:36 AM (20 years ago)
Author:
jhoblitt
Message:

VERSION 0.0.63

Location:
trunk/ippdb
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippdb/configure.ac

    r10328 r10433  
    11dnl
    2 dnl This file was generated by glueforge 0.33
     2dnl This file was generated by glueforge 0.34
    33dnl
    44dnl Do NOT directly edit this file.
     
    77AC_PREREQ(2.59)
    88
    9 AC_INIT([ippdb], [0.0.62], [pan-starrs.ifa.hawaii.edu])
     9AC_INIT([ippdb], [0.0.63], [pan-starrs.ifa.hawaii.edu])
    1010AC_CONFIG_SRCDIR([ippdb.pc.in])
    1111
  • trunk/ippdb/src/ippdb.c

    r10328 r10433  
    2020/*
    2121 *
    22  * This file was generated by glueforge 0.33
     22 * This file was generated by glueforge 0.34
    2323 *
    2424 * Do NOT directly edit this file.
     
    131131            METADATAITEM_STRIFY_CASE(PS_DATA_F64, "%f", F64);
    132132            case PS_DATA_STRING:
    133                 psStringSubstitute(str, " ", "_");
    134                 psStringAppend(&str, "%s", item->data.str);
     133                if (item->data.str) {
     134                    psString tmpStr = psStringCopy(item->data.str);
     135                    psStringSubstitute(tmpStr, "_", " ");
     136                    psStringAppend(&str, "%s", tmpStr);
     137                    psFree(tmpStr);
     138                }
    135139                break;
    136140            case PS_DATA_BOOL:
  • trunk/ippdb/src/ippdb.h

    r10328 r10433  
    2020/*
    2121 *
    22  * This file was generated by glueforge 0.33
     22 * This file was generated by glueforge 0.34
    2323 *
    2424 * Do NOT directly edit this file.
Note: See TracChangeset for help on using the changeset viewer.