Changeset 1167

Show
Ignore:
Timestamp:
11/20/08 16:05:48 (2 months ago)
Author:
tex
Message:

--

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • Provider_Common_Library/trunk

    • Property svn:ignore changed from
      autom4te.cache
      aclocal.m4
      config.h.in
      configure
      Makefile.in
      to
      autom4te.cache
      aclocal.m4
      config.h.in
      configure
      Makefile.in
      .project
  • Provider_Common_Library/trunk/Common.cpp

    r1166 r1167  
    256256// If '/bin/hostname -f' fails, it tries to execute '/bin/hostname' without options. 
    257257int CF_getSystemName(string& sysName, string& errorMessage) { 
    258 /*      vi t/string value, errout; 
     258/*      string value, errout; 
    259259        if (CF_runCommand("/bin/hostname -f", sysName, errout, errorMessage)!=OK) { 
    260260                CF_assert( CF_runCommand("/bin/hostname", sysName, errout, errorMessage)); 
     
    281281        sysName = uts.nodename; 
    282282        return OK; 
    283  
    284283} 
    285284