X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Fz3950oid.c;h=435ed4e111ea6a2cc6614a21ce886b20380e7b08;hb=455798a3154b5c08c872ca0fb90607ddea575038;hp=86f500ac0b6dc2efef1ff31ef39f620371857e44;hpb=c6e47cbbff56f39f6d81b079ebaeac41d793d4d9;p=yaz-moved-to-github.git diff --git a/src/z3950oid.c b/src/z3950oid.c index 86f500a..435ed4e 100644 --- a/src/z3950oid.c +++ b/src/z3950oid.c @@ -1,8 +1,8 @@ /* - * Copyright (c) 1995-2003, Index Data + * Copyright (C) 1995-2005, Index Data ApS * See the file LICENSE for details. * - * $Id: z3950oid.c,v 1.1 2003-10-27 12:21:36 adam Exp $ + * $Id: z3950oid.c,v 1.4 2005-06-25 15:46:06 adam Exp $ */ #if HAVE_CONFIG_H @@ -21,7 +21,7 @@ Odr_oid *yaz_oidval_to_z3950oid (ODR o, int oid_class, int oid_value) ident.value = (enum oid_value) oid_value; if (ident.value == VAL_NONE) - return 0; + return 0; return odr_oiddup(o, oid_ent_to_oid(&ident, oid)); } @@ -36,7 +36,7 @@ Odr_oid *yaz_str_to_z3950oid (ODR o, int oid_class, const char *str) ident.value = oid_getvalbyname(str); if (ident.value == VAL_NONE) - return 0; + return 0; return odr_oiddup(o, oid_ent_to_oid(&ident, oid)); } @@ -46,7 +46,7 @@ const char *yaz_z3950oid_to_str (Odr_oid *oid, int *oid_class) struct oident *ident = oid_getentbyoid(oid); if (!ident || ident->value == VAL_NONE) - return 0; + return 0; *oid_class = ident->oclass; return ident->desc; } @@ -70,13 +70,11 @@ const char* yaz_z3950_oid_value_to_str(oid_value ov, oid_class oc) return ""; } } - - /* * Local variables: - * tab-width: 8 * c-basic-offset: 4 + * indent-tabs-mode: nil * End: - * vim600: sw=4 ts=8 fdm=marker - * vim<600: sw=4 ts=8 + * vim: shiftwidth=4 tabstop=8 expandtab */ +