emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#40277: closed (murmur-configuration missing newline in config file)


From: GNU bug Tracking System
Subject: bug#40277: closed (murmur-configuration missing newline in config file)
Date: Thu, 02 Apr 2020 17:12:01 +0000

Your message dated Thu, 02 Apr 2020 19:10:53 +0200
with message-id <address@hidden>
and subject line Re: bug#40277: murmur-configuration missing newline in config 
file
has caused the debbugs.gnu.org bug report #40277,
regarding murmur-configuration missing newline in config file
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden.)


-- 
40277: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=40277
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: murmur-configuration missing newline in config file Date: Sun, 29 Mar 2020 15:54:16 +0200
Hi,

i am using guix on my server and i want to use mumble.
I found that it is working fine so far, but there is this one bug.
The config file generated is missing a newline.

The following patch fixes the issue:

diff --git a/gnu/services/telephony.scm b/gnu/services/telephony.scm
index 0a735315b4..572fd1a051 100644
--- a/gnu/services/telephony.scm
+++ b/gnu/services/telephony.scm
@@ -182,7 +182,7 @@
            "welcometext=" welcome-text "\n"
            "port=" (number->string port) "\n"
            (if server-password (list "serverpassword="
server-password "\n") '())
-           (if max-user-bandwidth (list "bandwidth=" (number->string
max-user-bandwidth)) '())
+           (if max-user-bandwidth (list "bandwidth=" (number->string
max-user-bandwidth) "\n") '())
            "users=" (number->string max-users) "\n"
            "uname=" user "\n"
            "database=" database-file "\n"



--- End Message ---
--- Begin Message --- Subject: Re: bug#40277: murmur-configuration missing newline in config file Date: Thu, 02 Apr 2020 19:10:53 +0200 User-agent: Notmuch/0.29.3 (https://notmuchmail.org) Emacs/26.3 (x86_64-pc-linux-gnu)
Simon Mages via Bug reports for GNU Guix <address@hidden> writes:

> Hi,
>
> i am using guix on my server and i want to use mumble.
> I found that it is working fine so far, but there is this one bug.
> The config file generated is missing a newline.
>
> The following patch fixes the issue:

Nice find, applied!

PS: In the future, please send git-style patches created with 'git
format-patch' to make merging easier.

Attachment: signature.asc
Description: PGP signature


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]