2009-08-17 22:37:20 +05:30
|
|
|
/*-
|
|
|
|
* Copyright (c) 2008-2009 Juan Romero Pardines.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <sys/utsname.h>
|
2009-11-07 09:26:20 +05:30
|
|
|
#include <limits.h>
|
|
|
|
#include <fnmatch.h>
|
2009-08-17 22:37:20 +05:30
|
|
|
|
|
|
|
#include <xbps_api.h>
|
2009-10-22 18:19:21 +05:30
|
|
|
#include "sha256.h"
|
2009-08-17 22:37:20 +05:30
|
|
|
|
|
|
|
static bool question(bool, const char *, va_list);
|
|
|
|
|
|
|
|
static const char *rootdir;
|
2009-11-28 07:08:41 +05:30
|
|
|
static const char *cachedir;
|
2009-08-17 22:37:20 +05:30
|
|
|
static int flags;
|
|
|
|
|
2009-10-27 06:16:00 +05:30
|
|
|
char SYMEXPORT *
|
2009-08-17 22:37:20 +05:30
|
|
|
xbps_get_file_hash(const char *file)
|
|
|
|
{
|
|
|
|
SHA256_CTX ctx;
|
|
|
|
char *hash;
|
|
|
|
uint8_t buf[BUFSIZ * 20], digest[SHA256_DIGEST_STRING_LENGTH];
|
|
|
|
ssize_t bytes;
|
|
|
|
int fd;
|
|
|
|
|
|
|
|
if ((fd = open(file, O_RDONLY)) == -1)
|
|
|
|
return NULL;
|
|
|
|
|
2009-10-30 16:47:26 +05:30
|
|
|
XBPS_SHA256_Init(&ctx);
|
2009-08-17 22:37:20 +05:30
|
|
|
while ((bytes = read(fd, buf, sizeof(buf))) > 0)
|
2009-10-30 16:47:26 +05:30
|
|
|
XBPS_SHA256_Update(&ctx, buf, (size_t)bytes);
|
|
|
|
hash = strdup(XBPS_SHA256_End(&ctx, digest));
|
2009-08-17 22:37:20 +05:30
|
|
|
(void)close(fd);
|
|
|
|
|
|
|
|
return hash;
|
|
|
|
}
|
|
|
|
|
2009-10-27 06:16:00 +05:30
|
|
|
int SYMEXPORT
|
2009-08-17 22:37:20 +05:30
|
|
|
xbps_check_file_hash(const char *path, const char *sha256)
|
|
|
|
{
|
|
|
|
char *res;
|
|
|
|
|
|
|
|
res = xbps_get_file_hash(path);
|
|
|
|
if (res == NULL)
|
|
|
|
return errno;
|
|
|
|
|
|
|
|
if (strcmp(sha256, res)) {
|
|
|
|
free(res);
|
|
|
|
return ERANGE;
|
|
|
|
}
|
|
|
|
free(res);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-11-23 09:53:16 +05:30
|
|
|
bool SYMEXPORT
|
|
|
|
xbps_check_is_repo_string_remote(const char *uri)
|
|
|
|
{
|
|
|
|
assert(uri != NULL);
|
|
|
|
|
|
|
|
if ((strncmp(uri, "https://", 8) == 0) ||
|
|
|
|
(strncmp(uri, "http://", 7) == 0) ||
|
|
|
|
(strncmp(uri, "ftp://", 6) == 0))
|
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-10-27 06:16:00 +05:30
|
|
|
int SYMEXPORT
|
2009-08-17 22:37:20 +05:30
|
|
|
xbps_check_is_installed_pkg(const char *pkg)
|
|
|
|
{
|
|
|
|
prop_dictionary_t dict;
|
2009-11-26 07:52:50 +05:30
|
|
|
const char *instpkgver = NULL;
|
2009-11-22 09:45:47 +05:30
|
|
|
char *pkgname;
|
2009-08-17 22:37:20 +05:30
|
|
|
int rv = 0;
|
|
|
|
pkg_state_t state = 0;
|
|
|
|
|
|
|
|
assert(pkg != NULL);
|
|
|
|
|
2009-11-07 09:26:20 +05:30
|
|
|
pkgname = xbps_get_pkgdep_name(pkg);
|
|
|
|
if (pkgname == NULL)
|
|
|
|
return -1;
|
2009-08-17 22:37:20 +05:30
|
|
|
|
|
|
|
dict = xbps_find_pkg_installed_from_plist(pkgname);
|
|
|
|
if (dict == NULL) {
|
|
|
|
free(pkgname);
|
2009-11-26 07:52:50 +05:30
|
|
|
if (errno == ENOENT) {
|
|
|
|
errno = 0;
|
|
|
|
return 0; /* not installed */
|
|
|
|
}
|
|
|
|
return -1;
|
2009-08-17 22:37:20 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Check that package state is fully installed, not
|
|
|
|
* unpacked or something else.
|
|
|
|
*/
|
2009-11-26 07:52:50 +05:30
|
|
|
if (xbps_get_pkg_state_dictionary(dict, &state) != 0) {
|
2009-10-23 14:41:57 +05:30
|
|
|
prop_object_release(dict);
|
2009-08-17 22:37:20 +05:30
|
|
|
free(pkgname);
|
|
|
|
return -1;
|
|
|
|
}
|
2009-10-23 14:41:57 +05:30
|
|
|
if (state != XBPS_PKG_STATE_INSTALLED) {
|
|
|
|
prop_object_release(dict);
|
2009-11-07 21:11:59 +05:30
|
|
|
free(pkgname);
|
|
|
|
return 0; /* not fully installed */
|
2009-10-23 14:41:57 +05:30
|
|
|
}
|
2009-11-07 21:11:59 +05:30
|
|
|
free(pkgname);
|
2009-11-22 09:45:47 +05:30
|
|
|
|
2009-11-23 02:21:19 +05:30
|
|
|
/* Check if installed pkg is matched against pkgdep pattern */
|
2009-11-22 09:45:47 +05:30
|
|
|
instpkgver = xbps_get_pkgver_from_dict(dict);
|
|
|
|
if (instpkgver == NULL) {
|
2009-11-07 09:26:20 +05:30
|
|
|
prop_object_release(dict);
|
|
|
|
return -1;
|
|
|
|
}
|
2009-11-23 02:21:19 +05:30
|
|
|
|
2009-11-22 09:45:47 +05:30
|
|
|
rv = xbps_pkgdep_match(instpkgver, __UNCONST(pkg));
|
2009-08-17 22:37:20 +05:30
|
|
|
prop_object_release(dict);
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2009-10-27 06:16:00 +05:30
|
|
|
bool SYMEXPORT
|
2009-08-17 22:37:20 +05:30
|
|
|
xbps_check_is_installed_pkgname(const char *pkgname)
|
|
|
|
{
|
|
|
|
prop_dictionary_t pkgd;
|
|
|
|
|
|
|
|
assert(pkgname != NULL);
|
|
|
|
|
|
|
|
pkgd = xbps_find_pkg_installed_from_plist(pkgname);
|
|
|
|
if (pkgd) {
|
|
|
|
prop_object_release(pkgd);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-10-27 06:16:00 +05:30
|
|
|
const char SYMEXPORT *
|
2009-08-17 22:37:20 +05:30
|
|
|
xbps_get_pkg_version(const char *pkg)
|
|
|
|
{
|
|
|
|
const char *tmp;
|
|
|
|
|
|
|
|
assert(pkg != NULL);
|
|
|
|
|
|
|
|
/* Get the required version */
|
|
|
|
tmp = strrchr(pkg, '-');
|
|
|
|
if (tmp == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
return tmp + 1; /* skip first '-' */
|
|
|
|
}
|
|
|
|
|
2009-10-27 06:16:00 +05:30
|
|
|
const char SYMEXPORT *
|
2009-08-17 22:37:20 +05:30
|
|
|
xbps_get_pkg_revision(const char *pkg)
|
|
|
|
{
|
|
|
|
const char *tmp;
|
|
|
|
|
|
|
|
assert(pkg != NULL);
|
|
|
|
|
|
|
|
/* Get the required revision */
|
|
|
|
tmp = strrchr(pkg, '_');
|
|
|
|
if (tmp == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
return tmp + 1; /* skip first '_' */
|
|
|
|
}
|
|
|
|
|
2009-10-27 06:16:00 +05:30
|
|
|
char SYMEXPORT *
|
2009-08-17 22:37:20 +05:30
|
|
|
xbps_get_pkg_name(const char *pkg)
|
|
|
|
{
|
|
|
|
const char *tmp;
|
|
|
|
char *pkgname;
|
|
|
|
size_t len = 0;
|
|
|
|
|
|
|
|
assert(pkg != NULL);
|
|
|
|
|
|
|
|
/* Get package name */
|
|
|
|
tmp = strrchr(pkg, '-');
|
|
|
|
if (tmp == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
len = strlen(pkg) - strlen(tmp) + 1;
|
|
|
|
|
|
|
|
pkgname = malloc(len);
|
2009-11-07 09:26:20 +05:30
|
|
|
strncpy(pkgname, pkg, len);
|
2009-08-17 22:37:20 +05:30
|
|
|
pkgname[len - 1] = '\0';
|
|
|
|
|
|
|
|
return pkgname;
|
|
|
|
}
|
|
|
|
|
2009-11-07 09:26:20 +05:30
|
|
|
char SYMEXPORT *
|
|
|
|
xbps_get_pkgdep_name(const char *pkg)
|
|
|
|
{
|
|
|
|
char *res, *pkgname;
|
|
|
|
size_t len;
|
|
|
|
|
|
|
|
assert(pkg != NULL);
|
|
|
|
|
|
|
|
res = strpbrk(pkg, "><=");
|
|
|
|
if (res == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
len = strlen(pkg) - strlen(res) + 1;
|
|
|
|
pkgname = malloc(len);
|
|
|
|
if (pkgname == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
strncpy(pkgname, pkg, len);
|
|
|
|
pkgname[len - 1] = '\0';
|
|
|
|
|
|
|
|
return pkgname;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char SYMEXPORT *
|
|
|
|
xbps_get_pkgdep_version(const char *pkg)
|
|
|
|
{
|
|
|
|
char *res;
|
|
|
|
|
|
|
|
assert(pkg != NULL);
|
|
|
|
|
|
|
|
res = strpbrk(pkg, "><=");
|
|
|
|
if (res == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2009-11-22 09:45:47 +05:30
|
|
|
const char SYMEXPORT *
|
|
|
|
xbps_get_pkgver_from_dict(prop_dictionary_t d)
|
|
|
|
{
|
|
|
|
const char *pkgver;
|
|
|
|
|
|
|
|
assert(d != NULL);
|
|
|
|
|
2009-11-23 02:21:19 +05:30
|
|
|
if (!prop_dictionary_get_cstring_nocopy(d, "pkgver", &pkgver))
|
|
|
|
return NULL;
|
|
|
|
|
2009-11-22 09:45:47 +05:30
|
|
|
return pkgver;
|
|
|
|
}
|
|
|
|
|
2009-10-27 06:16:00 +05:30
|
|
|
static char *
|
2009-11-28 07:08:41 +05:30
|
|
|
get_pkg_index_remote_plist(const char *uri)
|
2009-10-27 06:16:00 +05:30
|
|
|
{
|
|
|
|
char *uri_fixed, *repodir;
|
|
|
|
|
|
|
|
uri_fixed = xbps_get_remote_repo_string(uri);
|
|
|
|
if (uri_fixed == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
2009-11-28 07:08:41 +05:30
|
|
|
repodir = xbps_xasprintf("%s/%s/%s/%s",
|
|
|
|
xbps_get_rootdir(), XBPS_META_PATH, uri_fixed, XBPS_PKGINDEX);
|
2009-10-27 06:16:00 +05:30
|
|
|
if (repodir == NULL) {
|
|
|
|
free(uri_fixed);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return repodir;
|
|
|
|
}
|
|
|
|
|
|
|
|
char SYMEXPORT *
|
|
|
|
xbps_get_pkg_index_plist(const char *uri)
|
2009-08-17 22:37:20 +05:30
|
|
|
{
|
|
|
|
struct utsname un;
|
|
|
|
|
2009-10-27 06:16:00 +05:30
|
|
|
assert(uri != NULL);
|
2009-08-17 22:37:20 +05:30
|
|
|
|
|
|
|
if (uname(&un) == -1)
|
|
|
|
return NULL;
|
|
|
|
|
2009-11-23 12:32:14 +05:30
|
|
|
if (xbps_check_is_repo_string_remote(uri))
|
2009-11-28 07:08:41 +05:30
|
|
|
return get_pkg_index_remote_plist(uri);
|
2009-10-27 06:16:00 +05:30
|
|
|
|
|
|
|
return xbps_xasprintf("%s/%s/%s", uri, un.machine, XBPS_PKGINDEX);
|
2009-08-17 22:37:20 +05:30
|
|
|
}
|
|
|
|
|
2009-11-28 07:08:41 +05:30
|
|
|
char SYMEXPORT *
|
2009-11-28 07:51:29 +05:30
|
|
|
xbps_get_binpkg_local_path(prop_dictionary_t pkg, const char *repoloc)
|
2009-11-28 07:08:41 +05:30
|
|
|
{
|
2009-11-28 07:51:29 +05:30
|
|
|
const char *filen, *arch, *cdir;
|
2009-11-28 07:08:41 +05:30
|
|
|
|
|
|
|
if (!prop_dictionary_get_cstring_nocopy(pkg, "filename", &filen))
|
|
|
|
return NULL;
|
|
|
|
if (!prop_dictionary_get_cstring_nocopy(pkg, "architecture", &arch))
|
|
|
|
return NULL;
|
|
|
|
cdir = xbps_get_cachedir();
|
|
|
|
if (cdir == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if (!xbps_check_is_repo_string_remote(repoloc)) {
|
|
|
|
/* local repo */
|
|
|
|
return xbps_xasprintf("%s/%s/%s", repoloc, arch, filen);
|
|
|
|
}
|
|
|
|
/* cachedir */
|
|
|
|
return xbps_xasprintf("%s/%s", cdir, filen);
|
|
|
|
}
|
|
|
|
|
2009-10-27 06:16:00 +05:30
|
|
|
bool SYMEXPORT
|
2009-08-17 22:37:20 +05:30
|
|
|
xbps_pkg_has_rundeps(prop_dictionary_t pkg)
|
|
|
|
{
|
|
|
|
prop_array_t array;
|
|
|
|
|
|
|
|
assert(pkg != NULL);
|
|
|
|
array = prop_dictionary_get(pkg, "run_depends");
|
|
|
|
if (array && prop_array_count(array) > 0)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-10-27 06:16:00 +05:30
|
|
|
void SYMEXPORT
|
2009-08-17 22:37:20 +05:30
|
|
|
xbps_set_rootdir(const char *dir)
|
|
|
|
{
|
|
|
|
assert(dir != NULL);
|
|
|
|
rootdir = dir;
|
|
|
|
}
|
|
|
|
|
2009-10-27 06:16:00 +05:30
|
|
|
const char SYMEXPORT *
|
2009-08-17 22:37:20 +05:30
|
|
|
xbps_get_rootdir(void)
|
|
|
|
{
|
|
|
|
if (rootdir == NULL)
|
|
|
|
rootdir = "";
|
|
|
|
|
|
|
|
return rootdir;
|
|
|
|
}
|
|
|
|
|
2009-11-28 07:08:41 +05:30
|
|
|
void SYMEXPORT
|
|
|
|
xbps_set_cachedir(const char *dir)
|
|
|
|
{
|
|
|
|
static char res[PATH_MAX];
|
|
|
|
int r = 0;
|
|
|
|
|
|
|
|
assert(dir != NULL);
|
|
|
|
|
|
|
|
r = snprintf(res, sizeof(res), "%s/%s", xbps_get_rootdir(), dir);
|
|
|
|
if (r == -1 || r >= (int)sizeof(res)) {
|
|
|
|
/* If error or truncated set to default */
|
|
|
|
cachedir = XBPS_CACHE_PATH;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
cachedir = res;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char SYMEXPORT *
|
|
|
|
xbps_get_cachedir(void)
|
|
|
|
{
|
|
|
|
static char res[PATH_MAX];
|
|
|
|
int r = 0;
|
|
|
|
|
|
|
|
if (cachedir == NULL) {
|
|
|
|
r = snprintf(res, sizeof(res), "%s/%s",
|
|
|
|
xbps_get_rootdir(), XBPS_CACHE_PATH);
|
|
|
|
if (r == -1 || r >= (int)sizeof(res))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
cachedir = res;
|
|
|
|
}
|
|
|
|
return cachedir;
|
|
|
|
}
|
|
|
|
|
2009-10-27 06:16:00 +05:30
|
|
|
void SYMEXPORT
|
2009-08-17 22:37:20 +05:30
|
|
|
xbps_set_flags(int lflags)
|
|
|
|
{
|
|
|
|
flags = lflags;
|
|
|
|
}
|
|
|
|
|
2009-10-27 06:16:00 +05:30
|
|
|
int SYMEXPORT
|
2009-08-17 22:37:20 +05:30
|
|
|
xbps_get_flags(void)
|
|
|
|
{
|
|
|
|
return flags;
|
|
|
|
}
|
|
|
|
|
2009-10-27 06:16:00 +05:30
|
|
|
char SYMEXPORT *
|
2009-08-17 22:37:20 +05:30
|
|
|
xbps_xasprintf(const char *fmt, ...)
|
|
|
|
{
|
|
|
|
va_list ap;
|
|
|
|
char *buf;
|
|
|
|
|
|
|
|
va_start(ap, fmt);
|
|
|
|
if (vasprintf(&buf, fmt, ap) == -1)
|
|
|
|
return NULL;
|
|
|
|
va_end(ap);
|
|
|
|
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
|
2009-10-27 06:16:00 +05:30
|
|
|
bool SYMEXPORT
|
2009-08-17 22:37:20 +05:30
|
|
|
xbps_yesno(const char *fmt, ...)
|
|
|
|
{
|
|
|
|
va_list ap;
|
|
|
|
bool res;
|
|
|
|
|
|
|
|
va_start(ap, fmt);
|
|
|
|
res = question(1, fmt, ap);
|
|
|
|
va_end(ap);
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2009-10-27 06:16:00 +05:30
|
|
|
bool SYMEXPORT
|
2009-08-17 22:37:20 +05:30
|
|
|
xbps_noyes(const char *fmt, ...)
|
|
|
|
{
|
|
|
|
va_list ap;
|
|
|
|
bool res;
|
|
|
|
|
|
|
|
va_start(ap, fmt);
|
|
|
|
res = question(0, fmt, ap);
|
|
|
|
va_end(ap);
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
static char *
|
|
|
|
strtrim(char *str)
|
|
|
|
{
|
|
|
|
char *pch = str;
|
|
|
|
|
|
|
|
if (str == NULL || *str == '\0')
|
|
|
|
return str;
|
|
|
|
|
|
|
|
while (isspace((unsigned char)*pch))
|
|
|
|
pch++;
|
|
|
|
|
|
|
|
if (pch != str)
|
|
|
|
memmove(str, pch, (strlen(pch) + 1));
|
|
|
|
|
|
|
|
if (*str == '\0')
|
|
|
|
return str;
|
|
|
|
|
|
|
|
pch = (str + (strlen(str) - 1));
|
|
|
|
while (isspace((unsigned char)*pch))
|
|
|
|
pch--;
|
|
|
|
|
|
|
|
*++pch = '\0';
|
|
|
|
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
|
|
|
question(bool preset, const char *fmt, va_list ap)
|
|
|
|
{
|
|
|
|
char response[32];
|
|
|
|
|
|
|
|
vfprintf(stderr, fmt, ap);
|
|
|
|
if (preset)
|
2009-12-22 16:57:59 +05:30
|
|
|
fprintf(stderr, " %s ", "[YES/no]");
|
2009-08-17 22:37:20 +05:30
|
|
|
else
|
2009-12-22 16:57:59 +05:30
|
|
|
fprintf(stderr, " %s ", "[yes/NO]");
|
2009-08-17 22:37:20 +05:30
|
|
|
|
|
|
|
if (fgets(response, 32, stdin)) {
|
|
|
|
(void)strtrim(response);
|
|
|
|
if (strlen(response) == 0)
|
|
|
|
return preset;
|
|
|
|
|
2009-12-22 16:57:59 +05:30
|
|
|
if (strcasecmp(response, "yes") == 0)
|
2009-08-17 22:37:20 +05:30
|
|
|
return true;
|
2009-12-22 16:57:59 +05:30
|
|
|
else if (strcasecmp(response, "no") == 0)
|
2009-08-17 22:37:20 +05:30
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|