From a41c137e1f6e5aa605c1b059f7f036669c861766 Mon Sep 17 00:00:00 2001 From: Justin Maggard Date: Wed, 16 May 2012 01:28:58 +0000 Subject: [PATCH] * Add manual configuration of the UUID. (Thanks Fred Dullemond) --- minidlna.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/minidlna.c b/minidlna.c index 96ed006..aa0eba1 100644 --- a/minidlna.c +++ b/minidlna.c @@ -590,6 +590,9 @@ init(int argc, char * * argv) case UPNPMINISSDPDSOCKET: minissdpdsocketpath = ary_options[i].value; break; + case UPNPUUID: + strcpy(uuidvalue+5, ary_options[i].value); + break; default: DPRINTF(E_ERROR, L_GENERAL, "Unknown option in file %s\n", optionsfile);