~ubuntu-branches/ubuntu/saucy/xmms2/saucy-proposed

« back to all changes in this revision

Viewing changes to src/clients/lib/ruby/rb_xmmsclient_main.c

  • Committer: Bazaar Package Importer
  • Author(s): Benjamin Drung
  • Date: 2011-10-22 23:53:00 UTC
  • mto: (38.1.2 sid)
  • mto: This revision was merged to the branch mainline in revision 43.
  • Revision ID: james.westby@ubuntu.com-20111022235300-u50pdo3g341jvk7q
ImportĀ upstreamĀ versionĀ 0.8+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*  XMMS2 - X Music Multiplexer System
2
 
 *  Copyright (C) 2003-2009 XMMS2 Team
 
2
 *  Copyright (C) 2003-2011 XMMS2 Team
3
3
 *
4
4
 *  PLUGINS ARE NOT CONSIDERED TO BE DERIVED WORK !!!
5
5
 *
33
33
m_userconfdir_get (VALUE self)
34
34
{
35
35
        const char *p;
36
 
        char path[PATH_MAX];
 
36
        char path[XMMS_PATH_MAX];
37
37
 
38
 
        p = xmmsc_userconfdir_get (path, PATH_MAX);
 
38
        p = xmmsc_userconfdir_get (path, XMMS_PATH_MAX);
39
39
 
40
40
        return p ? rb_str_new2 (p) : Qnil;
41
41
}