search for: dname

Displaying 20 results from an estimated 139 matches for "dname".

Did you mean: name
2008 Jul 23
3
Trouble authenticating to Samba shares with Win 2k3 ADS
...ows domain, it shows up in DNS and ADS, I can ping it, but I can't get samba shares to be accessible to users, or even get the smbclient to return shares properly. wbinfo -g returns the domain groups properly wbinfo -u return the domain users properly [root@solar samba]# wbinfo -a 'DNAME\uname'%secret plaintext password authentication succeeded challenge/response password authentication succeeded [root@solar samba]# wbinfo -K 'DNAME\uname'%secret plaintext kerberos password authentication for [DNAME\uname%secret] succeeded (requesting cctype: FILE) credentials...
2009 Dec 09
2
Problem with if statement
...atement and not getting the results I expected. # ID values for two school districts > with(rf, tapply(DistrictID, DistrictName, min) ) Aberdeen School Dist. # 58 Buhl Joint School District 59340 53409 This creates DNAME as I expected ... rf$DNAME[rf$DistrictID==59340] <- 'Aberdeen' rf$DNAME[rf$DistrictID==53409] <- 'Buhl' > with(rf, table(DistrictName, DNAME) ) DNAME DistrictName Aberdeen Buhl Aberdeen School Dist. # 58...
2003 Aug 24
1
readdir() and read() errors ignored
...ist.c,v retrieving revision 1.139 diff -u -r1.139 flist.c --- flist.c 17 Aug 2003 21:29:11 -0000 1.139 +++ flist.c 23 Aug 2003 23:03:02 -0000 @@ -877,13 +877,18 @@ } } - for (di = readdir(d); di; di = readdir(d)) { + for (errno = 0, di = readdir(d); di; errno = 0, di = readdir(d)) { char *dname = d_name(di); if (dname[0] == '.' && (dname[1] == '\0' || (dname[1] == '.' && dname[2] == '\0'))) continue; strlcpy(p, dname, MAXPATHLEN - l); send_file_name(f, flist, fname, recurse, 0); + } + if ( errno ) { + io_error = 1; + rp...
2011 Jun 24
1
windows compilation problem
...: undeclared identifier I realize the construct at this line is valid C99 syntax, which isn't accepted by MS. Can the code be changed to declare this variable at the beginning of the block? From: for (errno = 0, di = readdir(d); di; errno = 0, di = readdir(d)) { char *dname = d_name(di); if (dname[0] == '.' && (dname[1] == '\0' || (dname[1] == '.' && dname[2] == '\0'))) continue; unsigned name_len = strlcpy(p, dname, remainder); To: for...
2016 Jul 15
2
Samba 4.2.14 Internal DNS not returning DNAME records?
...xxx.xxx.xxx.xxx > Address: xxx.xxx.xxx.xxx#53 > ** server can't find www.pitneybowes.us: SERVFAIL > [root at XXX~]# nslookup -type=any www.pitneybowes.us 8.8.8.8 > Server: 8.8.8.8 > Address: 8.8.8.8#53 > Non-authoritative answer: > pitneybowes.us dname = pitneybowes.com. > www.pitneybowes.us canonical name = www.pitneybowes.com. > Authoritative answers can be found from: The only thing out of the ordinary here is the existence of a DNAME record -- which to the best of my new understanding fails upon queries on A records. So my quest...
2013 Feb 26
1
problem with nested loops
...for 7 countries. I use the fitted values from reg1 in the reg2 model. The interior loop executes without error as long as I explicitly specify the data set, i.e. data=dat70. However the code fails to execute if I specify the model in the form of the commented line, i. e reg1 <-dynlm(form1,data=Dnames[j]) I get the following error message: Error in merge.zoo(USA, lag(USA, k = -1), lag(USA, k = -2), lag(Canada, : object 'USA' not found Apparently the Dnames[j] does not evaluate to the dataset name. Does anyone have a solution to my problem? The values in Names are: [1] "...
2000 Aug 21
3
2.0.7: inherit permissions = yes breaks setting read-only on files
...th UNIXes that don't allow high order mode bits on mkdir. + Patch from gcarter@lanier.com. ********************************************************************/ int dos_mkdir(char *dname,mode_t mode) { - return(mkdir(dos_to_unix(dname,False),mode)); + int ret = mkdir(dos_to_unix(dname,False),mode); + if(!ret)...
2009 Aug 03
2
[PATCH] New commands to list devices by UUID and label
...+#include <sys/stat.h> +#include <sys/types.h> + +#include "daemon.h" +#include "actions.h" + +#include "hash.h" /* Gnulib hash table. */ + +/* Hash used in the first pass. */ +struct h1 { + dev_t dev; /* device */ + char *dname; /* d_dname entry (ie. UUID or label) */ +}; + +static size_t +hasher1 (const void *h1v, size_t table_size) +{ + const struct h1 *h1 = h1v; + + return (unsigned) h1->dev % table_size; +} + +static bool +comparator1 (const void *h11v, const void *h12v) +{ + const struct h1 *h1...
2005 Aug 31
2
R CMD check example problem (PR#8113)
...ile. The example section contains the lines # An equivalent function is somewhat messier, since it must either explicitly # construct the y axis label, duplicating some of the work of the plot # function: plotit <- function( df, var, col="red", title="" ) { dname <- deparse(substitute(df)) vname <- deparse(substitute(var)) plot( df[[vname]] ~ df$Grp, type="b", col=col, title=title, ylab=paste( dname, "$", vname, sep='' ) ) } # or we explicitly construct the call and then call eval. The code for...
2013 Sep 05
12
[PATCH 0/5] Memory leaks amended
Memory leaks found by the tool--valgrind along with static reviewing. Based on Daivd''s branch ''integration-20130903''. Gui Hecheng (5): btrfs-progs:free local variable buf upon unsuccessful returns btrfs-progs:local variable memory freed btrfs-progs: missing tree-freeing statements added btrfs-progs:free the local list pending_list in btrfs_scan_one_dir
2016 Jul 15
0
Fwd: Samba 4.2.14 Internal DNS not returning DNAME records?
CC: List Thanks for the tip! Kris Lou klou at themusiclink.net ---------- Forwarded message ---------- From: Andrew Bartlett <abartlet at samba.org> Date: Fri, Jul 15, 2016 at 3:23 PM Subject: Re: [Samba] Samba 4.2.14 Internal DNS not returning DNAME records? To: Kris Lou <klou at themusiclink.net> On Fri, 2016-07-15 at 14:41 -0700, Kris Lou wrote: > > On Fri, Jul 15, 2016 at 2:16 PM, Andrew Bartlett <abartlet at samba.org> > wrote: > > Can you try git master? Otherwise, while I see some IDL to parse a > > DN...
2015 Jul 18
1
[PATCH 1/2] xfs: rename xfs_is_valid_magicnum to xfs_is_valid_sb
xfs_is_valid_magicnum is not actually a generic function that checks for magic numbers, instead it checks only for superblock's one. Signed-off-by: Paulo Alcantara <pcacjr at zytor.com> --- core/fs/xfs/xfs.c | 13 +++++-------- core/fs/xfs/xfs.h | 19 ++++++++++--------- 2 files changed, 15 insertions(+), 17 deletions(-) diff --git a/core/fs/xfs/xfs.c b/core/fs/xfs/xfs.c index
2015 Dec 15
8
[PATCH] xfs: Add support for v3 directories
...157,6 @@ const void *xfs_dir2_dirblks_get_cached(struct fs_info *fs, block_t startblock, return dirblks_cache[dirblks_cached_count++].dc_area; } } - return NULL; } @@ -171,23 +175,27 @@ void xfs_dir2_dirblks_flush_cache(void) struct inode *xfs_dir2_local_find_entry(const char *dname, struct inode *parent, xfs_dinode_t *core) { - xfs_dir2_sf_t *sf = (xfs_dir2_sf_t *)&core->di_literal_area[0]; + xfs_dir2_sf_t *sf = XFS_DFORK_PTR(core, XFS_DATA_FORK); xfs_dir2_sf_entry_t *sf_entry; + uint8_t ftypelen = core->di_version == 3 ? 1 : 0; uint8_t cou...
2007 Aug 01
0
[PATCH] handle dir entries with zero length(!)
...error message "cannot send file with empty name "...."". The way I show the directory where the empty file is might be improved... Paul Slootman --- flist.c.orig 2007-08-01 13:31:11.000000000 +0200 +++ flist.c 2007-08-01 13:32:49.000000000 +0200 @@ -1462,6 +1462,20 @@ if (dname[0] == '.' && (dname[1] == '\0' || (dname[1] == '.' && dname[2] == '\0'))) continue; + if (dname[0] == '\0') { + char replaced = 0; + io_error |= IOERR_GENERAL; + if (len > 0) { + repla...
2005 Apr 29
0
Anscombe-Glynn, Bonett-Seier, D'Agostino
...priate examples and references. Regards, -- Lukasz Komsta Department of Medicinal Chemistry Medical University of Lublin 6 Chodzki, 20-093 Lublin, Poland Fax +48 81 7425165 Code: agostino.test <- function (x, alternative=c("two.sided","less","greater")) { DNAME <- deparse(substitute(x)) x <- sort(x[complete.cases(x)]) n <- length(x) s <- match.arg(alternative) alter <- switch(s, two.sided=0, less=1, greater=2) if ((n < 8 || n > 46340)) stop("sample size must be between 8 and 46340") s3 <- (su...
2005 Mar 24
0
Outlook contacts ->Asteriskdatabase(LookupCI DName)
>> Is it possible in any way to use an Outlook contacts database as the >> source for the internal Asterisk database that is used for callerid >> lookups? You could do it with some simple CDO or MAPI calls but the overhead would be brutal and you'd never get the data in time unless you were running the CDO or MAPI calls on a dedicated Exchange server. If the data doesn't
2011 May 11
3
Reordering inputs
Hello All, I have 2 matrices consisting of the same inputs, but having different outputs. I created a heatmap for both of them; the point is to compare them side by side. The best way to organize the inputs is to make sure that the order of the inputs are the same for both heatmaps. How would I go about making sure that the order of inputs of both heatmaps are the same? As it is right now, I can
1999 Oct 13
1
dataframe transposition
...t;, "259", "136", "266", "27", "1")), .Names =c("authorisor", "count(*)"), row.names = c("1", "2", "3", "4", "5", "6"), class = "data.frame") >wk[,1]->dnames >as.data.frame(t(wk))->wk >wk[-1,]->wk >names(wk)<-dnames >wk JMC LCA MCM MDH ML SA count(*) 4 259 136 266 27 1 > plot(wk) Error: non-numeric data type in frame > >page(wk3) structure(list(JMC = structure("4 ", .Names = "count(*)"...
2014 Nov 20
2
[PATCH net V3] virtio-net: validate features during probe
...644 --- a/drivers/net/virtio_net.c +++ b/drivers/net/virtio_net.c @@ -1673,6 +1673,40 @@ static const struct attribute_group virtio_net_mrg_rx_group = { }; #endif +static bool virtnet_fail_on_feature(struct virtio_device *vdev, + unsigned int fbit, + const char *fname, const char *dname) +{ + if (!virtio_has_feature(vdev, fbit)) + return false; + + dev_err(&vdev->dev, "Hypervisor bug: advertise feature %s but not %s", + fname, dname); + + return true; +} + +#define VIRTNET_FAIL_ON(vdev, fbit, dbit) \ + virtnet_fail_on_feature(vdev, fbit, #fbit, #dbit) + +stati...
2014 Nov 20
2
[PATCH net V3] virtio-net: validate features during probe
...644 --- a/drivers/net/virtio_net.c +++ b/drivers/net/virtio_net.c @@ -1673,6 +1673,40 @@ static const struct attribute_group virtio_net_mrg_rx_group = { }; #endif +static bool virtnet_fail_on_feature(struct virtio_device *vdev, + unsigned int fbit, + const char *fname, const char *dname) +{ + if (!virtio_has_feature(vdev, fbit)) + return false; + + dev_err(&vdev->dev, "Hypervisor bug: advertise feature %s but not %s", + fname, dname); + + return true; +} + +#define VIRTNET_FAIL_ON(vdev, fbit, dbit) \ + virtnet_fail_on_feature(vdev, fbit, #fbit, #dbit) + +stati...