2005-09-26 Robert Love <rml@novell.com>

* src/named-manager/nm-named-manager.c: only '#' is officially a valid
          comment in /etc/resolv.conf -- ';' is not.


git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@977 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
This commit is contained in:
Robert Love 2005-09-26 15:40:08 +00:00 committed by Robert Love
parent 05b3e32e56
commit d2d5d9268d
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2005-09-26 Robert Love <rml@novell.com>
* src/named-manager/nm-named-manager.c: only '#' is officially a valid
comment in /etc/resolv.conf -- ';' is not.
2005-09-19 Dan Williams <dcbw@redhat.com>
* src/backends/NetworkManagerRedHat.c:

View file

@ -621,7 +621,7 @@ rewrite_resolv_conf (NMNamedManager *mgr, GError **error)
goto lose;
searches = compute_domain_searches (mgr);
if (fprintf (f, "%s","; generated by NetworkManager, do not edit!\n\n") < 0) {
if (fprintf (f, "%s","# generated by NetworkManager, do not edit!\n\n") < 0) {
goto lose;
}