Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package udisks2-qt5 for openSUSE:Factory 
checked in at 2021-08-18 08:55:28
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/udisks2-qt5 (Old)
 and      /work/SRC/openSUSE:Factory/.udisks2-qt5.new.1899 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "udisks2-qt5"

Wed Aug 18 08:55:28 2021 rev:2 rq:910897 version:5.0.6

Changes:
--------
--- /work/SRC/openSUSE:Factory/udisks2-qt5/udisks2-qt5.changes  2021-04-26 
16:40:04.614120154 +0200
+++ /work/SRC/openSUSE:Factory/.udisks2-qt5.new.1899/udisks2-qt5.changes        
2021-08-18 08:56:01.990966322 +0200
@@ -1,0 +2,6 @@
+Wed Jul 28 05:33:40 UTC 2021 - Hillwood Yang <[email protected]>
+
+- Update version to 5.0.6
+  * Add partition type identification for partiontable type
+
+-------------------------------------------------------------------

Old:
----
  udisks2-qt5-5.0.5.tar.gz

New:
----
  udisks2-qt5-5.0.6.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ udisks2-qt5.spec ++++++
--- /var/tmp/diff_new_pack.dfvnBx/_old  2021-08-18 08:56:04.670963198 +0200
+++ /var/tmp/diff_new_pack.dfvnBx/_new  2021-08-18 08:56:04.670963198 +0200
@@ -18,7 +18,7 @@
 %define sover 0
 
 Name:           udisks2-qt5
-Version:        5.0.5
+Version:        5.0.6
 Release:        0
 Summary:        UDisks2 library with Qt5
 License:        LGPL-3.0+

++++++ udisks2-qt5-5.0.5.tar.gz -> udisks2-qt5-5.0.6.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/udisks2-qt5-5.0.5/dblockdevice.cpp 
new/udisks2-qt5-5.0.6/dblockdevice.cpp
--- old/udisks2-qt5-5.0.5/dblockdevice.cpp      2020-08-19 07:39:14.000000000 
+0200
+++ new/udisks2-qt5-5.0.6/dblockdevice.cpp      2021-05-20 02:53:08.000000000 
+0200
@@ -1,12 +1,14 @@
 /*
- * Copyright (C) 2017 ~ 2018 Deepin Technology Co., Ltd.
+ * Copyright (C) 2020 UOS Technology Co., Ltd.
  *
- * Author:     zccrs <[email protected]>
+ * Author:     zccrs <[email protected]>
  *
- * Maintainer: zccrs <[email protected]>
+ * Maintainer: xushitong<[email protected]>
+ *             max-lv<[email protected]>
+ *             zhangsheng<[email protected]>
  *
  * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
+ * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * any later version.
  *
@@ -15,7 +17,7 @@
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
- * You should have received a copy of the GNU Lesser General Public License
+ * You should have received a copy of the GNU General Public License
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 #include "dblockdevice.h"
@@ -356,6 +358,13 @@
     return hasFileSystem(d->dbus->path());
 }
 
+bool DBlockDevice::hasPartitionTable() const
+{
+    Q_D(const DBlockDevice);
+
+    return hasPartitionTable(d->dbus->path());
+}
+
 bool DBlockDevice::hasPartition() const
 {
     Q_D(const DBlockDevice);
@@ -382,6 +391,11 @@
     return UDisks2::interfaceExists(path, UDISKS2_SERVICE ".Filesystem");
 }
 
+bool DBlockDevice::hasPartitionTable(const QString &path)
+{
+    return UDisks2::interfaceExists(path, UDISKS2_SERVICE ".PartitionTable");
+}
+
 bool DBlockDevice::hasPartition(const QString &path)
 {
     return UDisks2::interfaceExists(path, UDISKS2_SERVICE ".Partition");
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/udisks2-qt5-5.0.5/dblockdevice.h 
new/udisks2-qt5-5.0.6/dblockdevice.h
--- old/udisks2-qt5-5.0.5/dblockdevice.h        2020-08-19 07:39:14.000000000 
+0200
+++ new/udisks2-qt5-5.0.6/dblockdevice.h        2021-05-20 02:53:08.000000000 
+0200
@@ -1,12 +1,14 @@
 /*
- * Copyright (C) 2017 ~ 2018 Deepin Technology Co., Ltd.
+ * Copyright (C) 2020 UOS Technology Co., Ltd.
  *
- * Author:     zccrs <[email protected]>
+ * Author:     zccrs <[email protected]>
  *
- * Maintainer: zccrs <[email protected]>
+ * Maintainer: xushitong<[email protected]>
+ *             max-lv<[email protected]>
+ *             zhangsheng<[email protected]>
  *
  * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
+ * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * any later version.
  *
@@ -15,7 +17,7 @@
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
- * You should have received a copy of the GNU Lesser General Public License
+ * You should have received a copy of the GNU General Public License
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 #ifndef DBLOCKDEVICE_H
@@ -146,11 +148,13 @@
     QStringList userspaceMountOptions() const;
 
     bool hasFileSystem() const;
+    bool hasPartitionTable() const;
     bool hasPartition() const;
     bool isEncrypted() const;
     bool isLoopDevice() const;
 
     static bool hasFileSystem(const QString &path);
+    static bool hasPartitionTable(const QString &path);
     static bool hasPartition(const QString &path);
     static bool isEncrypted(const QString &path);
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/udisks2-qt5-5.0.5/dblockpartition.cpp 
new/udisks2-qt5-5.0.6/dblockpartition.cpp
--- old/udisks2-qt5-5.0.5/dblockpartition.cpp   2020-08-19 07:39:14.000000000 
+0200
+++ new/udisks2-qt5-5.0.6/dblockpartition.cpp   2021-05-20 02:53:08.000000000 
+0200
@@ -1,12 +1,14 @@
 /*
- * Copyright (C) 2017 ~ 2018 Deepin Technology Co., Ltd.
+ * Copyright (C) 2020 UOS Technology Co., Ltd.
  *
- * Author:     zccrs <[email protected]>
+ * Author:     zccrs <[email protected]>
  *
- * Maintainer: zccrs <[email protected]>
+ * Maintainer: xushitong<[email protected]>
+ *             max-lv<[email protected]>
+ *             zhangsheng<[email protected]>
  *
  * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
+ * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * any later version.
  *
@@ -15,7 +17,7 @@
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
- * You should have received a copy of the GNU Lesser General Public License
+ * You should have received a copy of the GNU General Public License
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 #include "dblockpartition.h"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/udisks2-qt5-5.0.5/dblockpartition.h 
new/udisks2-qt5-5.0.6/dblockpartition.h
--- old/udisks2-qt5-5.0.5/dblockpartition.h     2020-08-19 07:39:14.000000000 
+0200
+++ new/udisks2-qt5-5.0.6/dblockpartition.h     2021-05-20 02:53:08.000000000 
+0200
@@ -1,12 +1,14 @@
 /*
- * Copyright (C) 2017 ~ 2018 Deepin Technology Co., Ltd.
+ * Copyright (C) 2020 UOS Technology Co., Ltd.
  *
- * Author:     zccrs <[email protected]>
+ * Author:     zccrs <[email protected]>
  *
- * Maintainer: zccrs <[email protected]>
+ * Maintainer: xushitong<[email protected]>
+ *             max-lv<[email protected]>
+ *             zhangsheng<[email protected]>
  *
  * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
+ * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * any later version.
  *
@@ -15,7 +17,7 @@
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
- * You should have received a copy of the GNU Lesser General Public License
+ * You should have received a copy of the GNU General Public License
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 #ifndef DBLOCKPARTITION_H
@@ -117,8 +119,10 @@
         DRDOS_sec_FAT12 = 0xbb,
         DRDOS_sec_FAT16_Less_32M = 0xc1,
         DRDOS_sec_FAT16 = 0xc4,
+        DRDOS_sec_extend = 0xc5,
         Syrinx = 0xc6,
         Non_FS_data = 0xc7,
+        Multiuser_DOS_extend = 0xd5,
         CP_M_CTOS_dot_dot_dot = 0xda,
         Dell_Utility = 0xdb,
         BootIt = 0xde,
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/udisks2-qt5-5.0.5/ddiskdevice.cpp 
new/udisks2-qt5-5.0.6/ddiskdevice.cpp
--- old/udisks2-qt5-5.0.5/ddiskdevice.cpp       2020-08-19 07:39:14.000000000 
+0200
+++ new/udisks2-qt5-5.0.6/ddiskdevice.cpp       2021-05-20 02:53:08.000000000 
+0200
@@ -1,12 +1,14 @@
 /*
- * Copyright (C) 2017 ~ 2018 Deepin Technology Co., Ltd.
+ * Copyright (C) 2020 UOS Technology Co., Ltd.
  *
- * Author:     zccrs <[email protected]>
+ * Author:     zccrs <[email protected]>
  *
- * Maintainer: zccrs <[email protected]>
+ * Maintainer: xushitong<[email protected]>
+ *             max-lv<[email protected]>
+ *             zhangsheng<[email protected]>
  *
  * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
+ * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * any later version.
  *
@@ -15,7 +17,7 @@
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
- * You should have received a copy of the GNU Lesser General Public License
+ * You should have received a copy of the GNU General Public License
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 #include "ddiskdevice.h"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/udisks2-qt5-5.0.5/ddiskdevice.h 
new/udisks2-qt5-5.0.6/ddiskdevice.h
--- old/udisks2-qt5-5.0.5/ddiskdevice.h 2020-08-19 07:39:14.000000000 +0200
+++ new/udisks2-qt5-5.0.6/ddiskdevice.h 2021-05-20 02:53:08.000000000 +0200
@@ -1,12 +1,14 @@
 /*
- * Copyright (C) 2017 ~ 2018 Deepin Technology Co., Ltd.
+ * Copyright (C) 2020 UOS Technology Co., Ltd.
  *
- * Author:     zccrs <[email protected]>
+ * Author:     zccrs <[email protected]>
  *
- * Maintainer: zccrs <[email protected]>
+ * Maintainer: xushitong<[email protected]>
+ *             max-lv<[email protected]>
+ *             zhangsheng<[email protected]>
  *
  * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
+ * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * any later version.
  *
@@ -15,7 +17,7 @@
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
- * You should have received a copy of the GNU Lesser General Public License
+ * You should have received a copy of the GNU General Public License
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 #ifndef DDISKDEVICE_H
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/udisks2-qt5-5.0.5/ddiskmanager.cpp 
new/udisks2-qt5-5.0.6/ddiskmanager.cpp
--- old/udisks2-qt5-5.0.5/ddiskmanager.cpp      2020-08-19 07:39:14.000000000 
+0200
+++ new/udisks2-qt5-5.0.6/ddiskmanager.cpp      2021-05-20 02:53:08.000000000 
+0200
@@ -1,12 +1,14 @@
 /*
- * Copyright (C) 2017 ~ 2018 Deepin Technology Co., Ltd.
+ * Copyright (C) 2020 UOS Technology Co., Ltd.
  *
- * Author:     zccrs <[email protected]>
+ * Author:     zccrs <[email protected]>
  *
- * Maintainer: zccrs <[email protected]>
+ * Maintainer: xushitong<[email protected]>
+ *             max-lv<[email protected]>
+ *             zhangsheng<[email protected]>
  *
  * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
+ * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * any later version.
  *
@@ -15,7 +17,7 @@
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
- * You should have received a copy of the GNU Lesser General Public License
+ * You should have received a copy of the GNU General Public License
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 #include "ddiskmanager.h"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/udisks2-qt5-5.0.5/ddiskmanager.h 
new/udisks2-qt5-5.0.6/ddiskmanager.h
--- old/udisks2-qt5-5.0.5/ddiskmanager.h        2020-08-19 07:39:14.000000000 
+0200
+++ new/udisks2-qt5-5.0.6/ddiskmanager.h        2021-05-20 02:53:08.000000000 
+0200
@@ -1,12 +1,14 @@
 /*
- * Copyright (C) 2017 ~ 2018 Deepin Technology Co., Ltd.
+ * Copyright (C) 2020 UOS Technology Co., Ltd.
  *
- * Author:     zccrs <[email protected]>
+ * Author:     zccrs <[email protected]>
  *
- * Maintainer: zccrs <[email protected]>
+ * Maintainer: xushitong<[email protected]>
+ *             max-lv<[email protected]>
+ *             zhangsheng<[email protected]>
  *
  * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
+ * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * any later version.
  *
@@ -15,7 +17,7 @@
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
- * You should have received a copy of the GNU Lesser General Public License
+ * You should have received a copy of the GNU General Public License
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 #ifndef DDISKMANAGER_H
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/udisks2-qt5-5.0.5/dudisksjob.cpp 
new/udisks2-qt5-5.0.6/dudisksjob.cpp
--- old/udisks2-qt5-5.0.5/dudisksjob.cpp        2020-08-19 07:39:14.000000000 
+0200
+++ new/udisks2-qt5-5.0.6/dudisksjob.cpp        2021-05-20 02:53:08.000000000 
+0200
@@ -1,12 +1,14 @@
 /*
- * Copyright (C) 2017 ~ 2018 Deepin Technology Co., Ltd.
+ * Copyright (C) 2020 UOS Technology Co., Ltd.
  *
- * Author:     zccrs <[email protected]>
+ * Author:     zccrs <[email protected]>
  *
- * Maintainer: zccrs <[email protected]>
+ * Maintainer: xushitong<[email protected]>
+ *             max-lv<[email protected]>
+ *             zhangsheng<[email protected]>
  *
  * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
+ * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * any later version.
  *
@@ -15,7 +17,7 @@
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
- * You should have received a copy of the GNU Lesser General Public License
+ * You should have received a copy of the GNU General Public License
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 #include "dudisksjob.h"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/udisks2-qt5-5.0.5/dudisksjob.h 
new/udisks2-qt5-5.0.6/dudisksjob.h
--- old/udisks2-qt5-5.0.5/dudisksjob.h  2020-08-19 07:39:14.000000000 +0200
+++ new/udisks2-qt5-5.0.6/dudisksjob.h  2021-05-20 02:53:08.000000000 +0200
@@ -1,12 +1,14 @@
 /*
- * Copyright (C) 2017 ~ 2018 Deepin Technology Co., Ltd.
+ * Copyright (C) 2020 UOS Technology Co., Ltd.
  *
- * Author:     zccrs <[email protected]>
+ * Author:     zccrs <[email protected]>
  *
- * Maintainer: zccrs <[email protected]>
+ * Maintainer: xushitong<[email protected]>
+ *             max-lv<[email protected]>
+ *             zhangsheng<[email protected]>
  *
  * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
+ * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * any later version.
  *
@@ -15,7 +17,7 @@
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
- * You should have received a copy of the GNU Lesser General Public License
+ * You should have received a copy of the GNU General Public License
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 #ifndef DUDISKSJOB_H
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/udisks2-qt5-5.0.5/private/dblockdevice_p.h 
new/udisks2-qt5-5.0.6/private/dblockdevice_p.h
--- old/udisks2-qt5-5.0.5/private/dblockdevice_p.h      2020-08-19 
07:39:14.000000000 +0200
+++ new/udisks2-qt5-5.0.6/private/dblockdevice_p.h      2021-05-20 
02:53:08.000000000 +0200
@@ -1,12 +1,14 @@
 /*
- * Copyright (C) 2017 ~ 2018 Deepin Technology Co., Ltd.
+ * Copyright (C) 2020 UOS Technology Co., Ltd.
  *
- * Author:     zccrs <[email protected]>
+ * Author:     zccrs <[email protected]>
  *
- * Maintainer: zccrs <[email protected]>
+ * Maintainer: xushitong<[email protected]>
+ *             max-lv<[email protected]>
+ *             zhangsheng<[email protected]>
  *
  * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
+ * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * any later version.
  *
@@ -15,7 +17,7 @@
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
- * You should have received a copy of the GNU Lesser General Public License
+ * You should have received a copy of the GNU General Public License
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 #ifndef DBLOCKDEVICE_P_H
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/udisks2-qt5-5.0.5/udisks2_dbus_common.cpp 
new/udisks2-qt5-5.0.6/udisks2_dbus_common.cpp
--- old/udisks2-qt5-5.0.5/udisks2_dbus_common.cpp       2020-08-19 
07:39:14.000000000 +0200
+++ new/udisks2-qt5-5.0.6/udisks2_dbus_common.cpp       2021-05-20 
02:53:08.000000000 +0200
@@ -1,12 +1,14 @@
 /*
- * Copyright (C) 2017 ~ 2018 Deepin Technology Co., Ltd.
+ * Copyright (C) 2020 UOS Technology Co., Ltd.
  *
- * Author:     zccrs <[email protected]>
+ * Author:     zccrs <[email protected]>
  *
- * Maintainer: zccrs <[email protected]>
+ * Maintainer: xushitong<[email protected]>
+ *             max-lv<[email protected]>
+ *             zhangsheng<[email protected]>
  *
  * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
+ * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * any later version.
  *
@@ -15,7 +17,7 @@
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
- * You should have received a copy of the GNU Lesser General Public License
+ * You should have received a copy of the GNU General Public License
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/udisks2-qt5-5.0.5/udisks2_dbus_common.h 
new/udisks2-qt5-5.0.6/udisks2_dbus_common.h
--- old/udisks2-qt5-5.0.5/udisks2_dbus_common.h 2020-08-19 07:39:14.000000000 
+0200
+++ new/udisks2-qt5-5.0.6/udisks2_dbus_common.h 2021-05-20 02:53:08.000000000 
+0200
@@ -1,12 +1,14 @@
 /*
- * Copyright (C) 2017 ~ 2018 Deepin Technology Co., Ltd.
+ * Copyright (C) 2020 UOS Technology Co., Ltd.
  *
- * Author:     zccrs <[email protected]>
+ * Author:     zccrs <[email protected]>
  *
- * Maintainer: zccrs <[email protected]>
+ * Maintainer: xushitong<[email protected]>
+ *             max-lv<[email protected]>
+ *             zhangsheng<[email protected]>
  *
  * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
+ * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * any later version.
  *
@@ -15,7 +17,7 @@
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
- * You should have received a copy of the GNU Lesser General Public License
+ * You should have received a copy of the GNU General Public License
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 #ifndef UDISK2_DBUS_COMMON_H

Reply via email to