Changeset 7


Ignore:
Timestamp:
Jul 22, 2016, 11:35:34 PM (9 years ago)
Author:
Paul Smedley
Message:

Correct path issues, fixes #6

Location:
heimdal/trunk/lib/krb5
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • heimdal/trunk/lib/krb5/context.c

    r1 r7  
    836836#endif
    837837
     838#ifdef __OS2__
     839    files = getenv("ETC");
     840    strcat(files,"/krb5.conf");
     841#endif
    838842    if (files == NULL)
    839843        files = krb5_config_file;
  • heimdal/trunk/lib/krb5/keytab.c

    r1 r7  
    175175    if (residual == NULL ||
    176176        name[0] == '/'
    177 #ifdef _WIN32
     177#if defined(_WIN32)||defined(__OS2__)
    178178        /* Avoid treating <drive>:<path> as a keytab type
    179179         * specification */
  • heimdal/trunk/lib/krb5/krb5_locl.h

    r1 r7  
    200200
    201201#ifndef PATH_SEP
     202#ifndef __OS2__
    202203#define PATH_SEP ":"
     204#else
     205#define PATH_SEP ";"
     206#endif
    203207#endif
    204208
Note: See TracChangeset for help on using the changeset viewer.