- 29 Jan, 2013 1 commit
-
-
Max Kellermann authored
-
- 12 Dec, 2011 1 commit
-
-
Avuton Olrich authored
-
- 09 Sep, 2011 3 commits
-
-
Max Kellermann authored
Better error messages.
-
Max Kellermann authored
Remove the slash hack, allocate memory for the user name.
-
Max Kellermann authored
Just advance the "path" pointer.
-
- 29 Jan, 2011 1 commit
-
-
Max Kellermann authored
-
- 23 Dec, 2010 1 commit
-
-
Max Kellermann authored
-
- 01 Jan, 2010 1 commit
-
-
Avuton Olrich authored
-
- 12 Nov, 2009 1 commit
-
-
Max Kellermann authored
After we've been hit by Large File Support problems several times in the past week (which only occur on 32 bit platforms, which I don't have), this is yet another attempt to fix the issue.
-
- 08 Nov, 2009 1 commit
-
-
Max Kellermann authored
It's not used anymore, its features have been moved to fd_util.c.
-
- 06 Nov, 2009 1 commit
-
-
Max Kellermann authored
No CamelCase. Use bool instead of int. Make both arguments mandatory.
-
- 20 Oct, 2009 1 commit
-
-
Max Kellermann authored
Try to be as portable as possible, use GLib path name functions and macros.
-
- 28 Apr, 2009 1 commit
-
-
Max Kellermann authored
strcasecmp() is locale dependent, making it a bad choice for internal string comparisons.
-
- 27 Mar, 2009 1 commit
-
-
Sean McNamara authored
socket, because there is no ioctl for non-sockets on Windows
-
- 13 Mar, 2009 1 commit
-
-
Avuton Olrich authored
This updates the copyright header to all be the same, which is pretty much an update of where to mail request for a copy of the GPL and the years of the MPD project. This also puts all committers under 'The Music Player Project' umbrella. These entries should go individually in the AUTHORS file, for consistancy.
-
- 19 Feb, 2009 1 commit
-
-
Max Kellermann authored
Now that I've found this nice function in the GLib docs, we can finally remove our custom sleep function. Still all those callers of g_usleep() have to be migrated one day to use events, instead of regular polling.
-
- 25 Jan, 2009 1 commit
-
-
Max Kellermann authored
config_get_string() is easier to use than config_get_param() because it unpacks the config_param struct.
-
- 17 Jan, 2009 1 commit
-
-
Max Kellermann authored
Renamed functions, types, variables.
-
- 08 Jan, 2009 1 commit
-
-
Max Kellermann authored
-
- 03 Jan, 2009 3 commits
-
-
Max Kellermann authored
Removed all allocation functions, xwrite(), xread(), ARRAY_SIZE(). Those have been superseded by GLib.
-
Max Kellermann authored
This always allocates strings on the heap, but we can delete the stripReturnChar() function now.
-
Max Kellermann authored
-
- 30 Dec, 2008 3 commits
-
-
Max Kellermann authored
Currently, both sides of the pipe are blocking, although we do not need blocking read(). Convert it back to blocking. Eliminate the select() from wait_main_task().
-
Max Kellermann authored
The new WIN32 version of set_nonblocking() can only deal with sockets, i.e. it will fail on main_notify.c. On WIN32, we have to reimplement main_notify.c anyway, so this is not a big deal.
-
Max Kellermann authored
Sleep() has only millisecond granularity, but good enough for now.
-
- 29 Dec, 2008 4 commits
-
-
Max Kellermann authored
On WIN32, parsePath() now simply duplicates the input string. There is currently nothing special we can do here. The old code was not portable on WIN32.
-
Max Kellermann authored
Use g_get_home_dir() to get the home directory of the current user. This will be portable to win32.
-
Max Kellermann authored
Declare variables where they are really used.
-
Max Kellermann authored
-
- 28 Dec, 2008 2 commits
-
-
Thomas Jansen authored
-
Max Kellermann authored
Replaced myFgets() with fgets() + g_strchomp().
-
- 09 Dec, 2008 1 commit
-
-
Viliam Mateicka authored
-
- 02 Dec, 2008 2 commits
-
-
Thomas Jansen authored
We want to remove gcc.h eventually. This takes care of all the G_GNUC_MALLOC macros.
-
Thomas Jansen authored
We want to remove gcc.h eventually. This takes care of all the G_LIKELY/G_UNLIKELY macros.
-
- 01 Nov, 2008 1 commit
-
-
Max Kellermann authored
Eliminate code already provided by GLib.
-
- 29 Oct, 2008 1 commit
-
-
Max Kellermann authored
Prefer GLib over utils.h.
-
- 28 Oct, 2008 1 commit
-
-
Max Kellermann authored
Remove duplicated code from MPD.
-
- 15 Oct, 2008 1 commit
-
-
Max Kellermann authored
string_toupper() and strDupToUpper() were not able to deal with character sets other than US-ASCII. Use GLib's g_utf8_casefold() for strings.
-
- 08 Oct, 2008 1 commit
-
-
Max Kellermann authored
When there are standardized headers, use these instead of the bloated os_compat.h.
-
- 23 Sep, 2008 1 commit
-
-
Eric Wong authored
This allows us to avoid the nasty repetition in strncmp(foo, bar, strlen(foo)). We'll miss out on the compiler optimizing strlen() into sizeof() - 1 for string literals for this; but we don't use this it for performance-critical functions anyways...
-