From 677fd208a08aad1653544bda87a1056f23d1aaa2 Mon Sep 17 00:00:00 2001 From: Ting-Wei Lan Date: Mon, 29 Sep 2014 23:25:11 +0800 Subject: [PATCH] GCredentials: Fix ABI break when adding NetBSD support https://bugzilla.gnome.org/show_bug.cgi?id=728256 --- gio/gioenums.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gio/gioenums.h b/gio/gioenums.h index 1ea7c42c4..1ca5be558 100644 --- a/gio/gioenums.h +++ b/gio/gioenums.h @@ -1364,9 +1364,9 @@ typedef enum * @G_CREDENTIALS_TYPE_INVALID: Indicates an invalid native credential type. * @G_CREDENTIALS_TYPE_LINUX_UCRED: The native credentials type is a struct ucred. * @G_CREDENTIALS_TYPE_FREEBSD_CMSGCRED: The native credentials type is a struct cmsgcred. - * @G_CREDENTIALS_TYPE_NETBSD_UNPCBID: The native credentials type is a struct unpcbid. * @G_CREDENTIALS_TYPE_OPENBSD_SOCKPEERCRED: The native credentials type is a struct sockpeercred. Added in 2.30. * @G_CREDENTIALS_TYPE_SOLARIS_UCRED: The native credentials type is a ucred_t. Added in 2.40. + * @G_CREDENTIALS_TYPE_NETBSD_UNPCBID: The native credentials type is a struct unpcbid. * * Enumeration describing different kinds of native credential types. * @@ -1377,9 +1377,9 @@ typedef enum G_CREDENTIALS_TYPE_INVALID, G_CREDENTIALS_TYPE_LINUX_UCRED, G_CREDENTIALS_TYPE_FREEBSD_CMSGCRED, - G_CREDENTIALS_TYPE_NETBSD_UNPCBID, G_CREDENTIALS_TYPE_OPENBSD_SOCKPEERCRED, - G_CREDENTIALS_TYPE_SOLARIS_UCRED + G_CREDENTIALS_TYPE_SOLARIS_UCRED, + G_CREDENTIALS_TYPE_NETBSD_UNPCBID } GCredentialsType; /**